@charset "UTF-8";
/* CSS Document */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    font-family: 'Inter' , 'Intere-Italic', 'Times New Roman', 'Times', serif;
    line-height: 1.1;
    background-color: #f9f9f9;
    color: #333;
}
.Michroma {
    font-family: 'Michroma', 'Eurostile', ''Century Gothic', 'Arial', sans-serif;
    line-height: 1.6;
}

.Inter {
    font-family: 'Inter' , 'Intere-Italic', 'Times New Roman', 'Times', serif;
    line-height: 1.1;
}
.Roboto {
    font-family: 'Roboto','Roboto-Italic' 'Courier New',monospaced;
    line-height: 1.2;
}
h1 {
   font-family: 'Michroma', 'Eurostile', ''Century Gothic', 'Arial', sans-serif;
    line-height: 1.6;
}
h2 {
   font-family: 'Michroma', 'Eurostile', ''Century Gothic', 'Arial', sans-serif;
    line-height: 1.6;
}
h3 {
   font-family: 'Michroma', 'Eurostile', ''Century Gothic', 'Arial', sans-serif;
    line-height: 1.6;
}
p {
    font-family: 'Inter' , 'Intere-Italic', 'Times New Roman', 'Times', serif;
}
/* 9. Scrollable Page Content */

.intro {
    background-color: #eaeaea;
    justify-content: center;
    text-align: center;
    width: 100%;
}
.intro h1 {
    font-size: 2rem;
    margin: 15px auto;
    justify-content: center;
    font-family: 'Michroma', 'Eurostile', ''Century Gothic', 'Arial', sans-serif;
    line-height: 1.6;
}
.intro p {
    text-align: left;
    margin: 0 1vw;
    
}

.grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.card {
    background-color: #ffffff;
    min-width: 250px
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    padding-bottom: 20px;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.card p {
    font-family: 'Inter' , 'Intere-Italic', 'Times New Roman', 'Times', serif;
}
.card-image img {
    width: 100%;
    height: auto;
}

.card h3 {
    margin: 15px 0 10px;
}

.card p {
    padding: 0 15px;
    font-size: 0.9rem;
    color: #666666;
    margin-bottom: 20px;
}

.btn {
    display: inline-block;
    background-color: #b81d24;
    color: #ffffff;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 3px;
    font-size: 0.9rem;
    font-weight: 500;
}

/* --- Mobile-First Brand Image Grid (Vertical Orientation / Small Screens) --- */
.image-grid-brand {
    display: grid;
    grid-template-columns: 1fr; /* Single column stack */
    gap: 1rem;
}

.image-card-brand img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}


/* --- Responsive Media Hand-off (900px Threshold) --- */
    .grid-layout { 
        grid-template-columns: repeat(3, 1fr); 
    }
/* --- Desktop & Landscape Tablet Media Query (Two Columns, Two Rows) --- */
@media (max-width: 400px) {
    .image-grid-brand {
        grid-template-columns: repeat(2, 1fr); /* 2x2 layout */
        gap: 1.5rem;
    }
}

