/* css/style.css - Version Finale Complète */
:root {
    --konipa-blue: #003366; 
    --konipa-red: #D00000;   
    --text-dark: #333333;
    --text-light: #FFFFFF;
    --bg-light: #FFFFFF;
    --bg-grey: #f4f4f4;
    --font-title: 'Montserrat', sans-serif;
    --font-body: 'Open Sans', sans-serif;
}

/* Réinitialisation de base et styles généraux */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth; 
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    background-color: var(--bg-light);
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    overflow: hidden; 
    padding: 0 20px;
}

h1, h2, h3, h4 {
    font-family: var(--font-title);
    color: var(--konipa-blue);
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1rem;
}

a {
    text-decoration: none;
    color: var(--konipa-red);
}

img {
    max-width: 100%; 
    height: auto;
    display: block; /* Empêche les espaces en dessous des images */
}

/* En-tête (Header) */
header {
    background: var(--bg-light);
    padding: 1rem 0;
    border-bottom: 1px solid #ddd;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative; 
}

header .logo img {
    height: 70px; 
}

header nav ul {
    list-style: none;
    display: flex;
}

header nav ul li {
    margin-left: 20px;
}

header nav ul li a {
    color: var(--konipa-blue);
    font-weight: bold;
    transition: color 0.3s ease;
    padding: 5px 0;
}

header nav ul li a:hover,
header nav ul li a.active {
    color: var(--konipa-red);
    border-bottom: 2px solid var(--konipa-red);
}

/* Sélecteur de Langue */
.language-switcher {
    margin-left: auto; 
    padding-left: 20px; 
    display: flex;
    align-items: center;
}

.language-switcher a {
    color: var(--konipa-blue);
    text-decoration: none;
    padding: 0.3rem 0.6rem;
    margin: 0 0.2rem;
    border-radius: 4px;
    font-size: 0.85em;
    font-weight: 600;
    border: 1px solid transparent;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.language-switcher a:hover {
    background-color: var(--konipa-red);
    color: var(--text-light);
    border-color: var(--konipa-red);
}

.language-switcher a.current-lang { 
    background-color: var(--konipa-blue);
    color: var(--text-light);
    border-color: var(--konipa-blue);
    font-weight: bold;
}

/* Pied de Page (Footer) - ENRICHI */
.site-footer { 
    background-color: #2c3e50; 
    color: #bdc3c7; 
    padding: 4rem 0 2rem; 
    font-size: 0.9rem;
}

.site-footer .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: left; 
}

.footer-column h4 {
    color: var(--text-light);
    font-family: var(--font-title);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-column h4::after { 
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 2px;
    background-color: var(--konipa-red);
}

.footer-column p, .footer-column ul {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.footer-column ul {
    list-style: none;
    padding-left: 0;
}

.footer-column ul li {
    margin-bottom: 0.8rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: color 0.3s ease, padding-left 0.3s ease;
}

.footer-column ul li a:hover {
    color: var(--text-light);
    padding-left: 5px; 
}

.footer-column .contact-item {
    display: flex;
    align-items: center;
    margin-bottom: 0.8rem;
}

.footer-column .contact-item i {
    color: var(--konipa-red);
    margin-right: 10px;
    font-size: 1.1rem;
    width: 20px; 
    text-align: center;
}

.social-icons {
    margin-top: 1.5rem;
}

.social-icons a {
    color: #bdc3c7;
    font-size: 1.5rem;
    margin-right: 15px;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block; 
}

.social-icons a:hover {
    color: var(--text-light);
    transform: scale(1.2); 
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid #3e5062; 
    font-size: 0.85rem;
}

.footer-bottom p {
    margin: 0;
    color: #7f8c8d; 
}
.footer-bottom a { 
    color: #95a5a6;
    text-decoration: underline;
}
.footer-bottom a:hover {
    color: var(--text-light);
}


/* Sections Communes */
.section {
    padding: 3rem 0;
}
.section.bg-grey {
    background-color: var(--bg-grey);
}

.section-title {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
    color: var(--konipa-blue);
    font-weight: 700;
}

/* Boutons - MODIFICATIONS POUR MICRO-INTERACTIONS */
.btn {
    display: inline-block;
    padding: 0.9rem 1.8rem;
    border-radius: 5px;
    font-family: var(--font-title);
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease; 
    text-align: center;
    cursor: pointer;
    border: 2px solid transparent; 
    letter-spacing: 0.5px;
}
.btn-sm { /* Pour les boutons "Lire la suite" ou "Voir détails" */
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
}

.btn-primary {
    background-color: var(--konipa-red);
    color: var(--text-light);
    border-color: var(--konipa-red);
}

.btn-primary:hover {
    background-color: #a00000; 
    border-color: #a00000;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.2); 
}

.btn-secondary {
    background-color: transparent;
    color: var(--konipa-blue);
    border: 2px solid var(--konipa-blue);
}

.btn-secondary:hover {
    background-color: var(--konipa-blue);
    color: var(--text-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15); 
}

.btn:active {
    transform: translateY(0px); 
    box-shadow: 0 2px 4px rgba(0,0,0,0.1); 
}


/* Hero Section (Accueil) */
.hero {
    background: url('../img/hero-bg-v2.jpg') no-repeat center center/cover; 
    color: var(--text-light);
    min-height: 75vh; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative; 
    padding: 2rem 0; 
}

.hero::before { 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.55); 
}

.hero-content {
    position: relative; 
    z-index: 1;
    max-width: 800px; 
}

.hero h1 {
    font-size: 2.8rem; 
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3); 
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2); 
}
.hero .btn + .btn { 
    margin-left: 1rem;
}

/* Section Atouts (Accueil) */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.feature-item {
    background: var(--bg-light); 
    padding: 2rem 1.5rem;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}

.feature-item i { 
    font-size: 2.8rem;
    color: var(--konipa-red);
    margin-bottom: 1.5rem;
}

.feature-item h3 {
    font-size: 1.4rem;
    color: var(--konipa-blue);
    margin-bottom: 0.8rem;
}

/* Section Konipa en Chiffres */
.stats-section {
    padding: 4rem 0;
}

.stats-section .section-title {
    margin-bottom: 3rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    background-color: var(--bg-light); 
    padding: 2rem 1rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.stat-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.stat-item i {
    font-size: 3rem;
    color: var(--konipa-red);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--konipa-blue);
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1rem;
    color: #555;
    font-family: var(--font-body);
    margin: 0;
}


/* Section Catégories (Accueil & Produits) */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem; 
}

.category-card { 
    display: block; 
    background-color: var(--bg-light);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--text-dark); 
}

.category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    color: var(--text-dark); 
}

.category-card .category-image-wrapper {
    width: 100%;
    height: 200px;
    overflow: hidden; 
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
    transition: transform 0.4s ease; 
}
.category-card:hover img {
    transform: scale(1.1);
}

.category-card .category-content {
    padding: 1.5rem;
}

.category-card h3 {
    font-size: 1.3rem;
    color: var(--konipa-blue);
    margin-bottom: 0.5rem; 
}
.category-card p { 
    font-size: 0.9rem;
    color: #555;
    line-height: 1.5;
}


/* Page À Propos */
.about-content ul {
    list-style-position: inside;
    margin-left: 1rem;
    margin-bottom: 1rem;
}
.about-content ul li {
    margin-bottom: 0.5rem;
}

/* Nouveaux styles pour afficher deux images sur la page À Propos */
.about-images-container {
    display: flex;
    gap: 1rem; /* Espace entre les images */
    margin-bottom: 1.5rem;
    float: right;
    width: 100%;
    max-width: 450px;
    margin-left: 2rem;
}

.about-images-container img {
    width: calc(50% - 0.5rem); /* Chaque image prend la moitié de l'espace disponible */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}


/* Page Contact */
.contact-grid {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr; 
    gap: 3rem;
    margin-top: 2rem;
    align-items: flex-start; 
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 1rem; 
    margin-bottom: 1.2rem; 
    border: 1px solid #ccc;
    border-radius: 5px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease; 
}
.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: var(--konipa-blue);
    outline: none;
    box-shadow: 0 0 5px rgba(0, 51, 102, 0.2);
}

.contact-form textarea {
    min-height: 160px;
    resize: vertical;
}

.contact-info {
    padding: 2rem;
    border-radius: 8px;
    position: relative; 
    background-image: url('../img/contact-info-bg.jpg'); 
    background-size: cover;
    background-position: center;
    color: var(--text-light); 
    z-index: 0; 
}

.contact-info::before { 
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 30, 60, 0.8); 
    border-radius: 8px; 
    z-index: -1; 
}

.contact-info h3 {
    color: var(--text-light); 
    position: relative; 
    z-index: 1;
}
.contact-info p {
    position: relative; 
    z-index: 1;
}
.contact-info a {
    color: #d4eaff; 
}
.contact-info a:hover {
    color: var(--text-light); 
}
.contact-info i {
    color: var(--konipa-red); 
}
.contact-info span, .contact-info strong, .contact-info small {
    color: var(--text-light);
}


.map-placeholder, .map-iframe {
    margin-top:1.5rem;
    background:#e0e0e0;
    height:250px; 
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    border-radius:8px;
    overflow: hidden; 
    position: relative; 
    z-index: 1;
}
.map-iframe iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


/* Bouton Retour en Haut */
#backToTopBtn {
    display: none; 
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 1001;
    padding: 0.6rem 0.9rem; 
    border-radius: 50%; 
    font-size: 1.1rem; 
    line-height: 1; 
}
#backToTopBtn i {
    display: block; 
}

/* Section Marques Partenaires */
.brands-section { 
    padding: 2rem 0; 
}

.brands-container {
    display: flex;
    align-items: center; 
    overflow-x: auto; 
    padding: 1.5rem 0; 
    gap: 2.5rem; 
    -ms-overflow-style: none;  
    scrollbar-width: none;  
}
.brands-container::-webkit-scrollbar { 
    display: none;
}

.brand-logo {
    flex-shrink: 0; 
    max-height: 70px; 
    max-width: 150px; 
    object-fit: contain; 
    filter: grayscale(100%); 
    opacity: 0.7;
    transition: filter 0.3s ease, opacity 0.3s ease, transform 0.3s ease;
}

.brand-logo:hover {
    filter: grayscale(0%); 
    opacity: 1;
    transform: scale(1.1); 
}

/* Styles pour la page de catégorie individuelle */
.category-header img {
    display: block; 
    margin-left: auto;
    margin-right: auto;
    max-width: 300px; 
    border-radius: 8px;
    margin-bottom: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.category-header h1 { 
    text-align: center; 
    margin-bottom: 0.5rem;
}
.category-header p {
    text-align: center;
    margin-bottom: 2rem;
    color: #555;
}
.product-list { /* Conteneur pour les items sur la page de catégorie */
    margin-top: 2rem;
}
.product-item { /* Style pour chaque produit listé sur la page de catégorie */
    background: var(--bg-light);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.1);
}
.product-item h3 {
    color: var(--konipa-red); 
    margin-bottom: 0.5rem;
}
.product-item h3 a { 
    color: var(--konipa-red);
    text-decoration: none;
}
.product-item h3 a:hover {
    text-decoration: underline;
    color: #a00000; 
}
.product-item p {
    font-size: 0.95rem;
    color: #555;
}

/* Styles pour les Pages de Détail Produit */
.product-detail-container {
    max-width: 900px; 
    margin: 0 auto;
    padding: 1rem 0; 
}

.product-detail-header {
    text-align: center;
    margin-bottom: 2rem;
}

.product-detail-header h1 {
    color: var(--konipa-blue);
    font-size: 2.5rem; 
}

.product-image-container {
    text-align: center;
    margin-bottom: 2.5rem;
}

.product-image-container img {
    max-width: 100%;
    height: auto;
    max-height: 450px; 
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid #eee; 
}

.product-info-section {
    background-color: var(--bg-light); 
    padding: 2rem;
    border-radius: 8px;
    margin-bottom: 2.5rem;
    box-shadow: 0 4px 12px rgba(0,0,0,0.07);
}

.product-info-section h2 {
    color: var(--konipa-red);
    margin-bottom: 1.2rem; 
    border-bottom: 2px solid var(--konipa-blue);
    padding-bottom: 0.6rem;
    display: inline-block; 
    font-size: 1.8rem; 
}

.product-info-section p, 
.product-info-section ul {
    line-height: 1.8; 
    margin-bottom: 1.2rem;
    font-size: 1rem; 
}

.product-info-section ul {
    list-style: disc;
    padding-left: 25px; 
}
.product-info-section ul ul { 
    list-style: circle;
    margin-top: 0.5rem;
}

.product-info-section strong {
    color: var(--text-dark); 
}

.product-detail-nav {
    text-align: center; 
    margin-top: 3rem; 
    padding-top:1.5rem; 
    border-top: 1px solid #e0e0e0; 
}
.product-detail-nav p {
    margin-bottom: 1.5rem;
    font-weight: 600;
    color: var(--text-dark);
}
.product-detail-nav .btn {
    margin: 5px 5px 10px 5px;
}


/* Styles spécifiques pour la page actualites */
.article-card {
    background-color: var(--bg-light);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0,0,0,0.06);
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease; 
}
.article-card:hover { 
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.article-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.4s ease; 
}
.article-card:hover img { 
    transform: scale(1.05);
}

.article-card-content {
    padding: 1.5rem;
}
.article-card-content h3 {
    color: var(--konipa-blue);
    margin-bottom: 0.75rem;
    font-size: 1.4rem; 
}
.article-card-content .date {
    font-size: 0.85rem;
    color: #777;
    margin-bottom: 0.75rem;
    display: block;
}
.article-card-content p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.6;
    margin-bottom: 1rem;
}
.articles-container { 
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); 
    gap: 2rem;
}

/* Styles pour la page d'article individuelle */
.article-content-wrapper { 
    max-width: 800px; 
    margin: 0 auto;
}
.article-content-wrapper img.article-image-main {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.article-content-wrapper .article-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 1.5rem;
}
.article-content-wrapper h1 { 
    text-align: left;
    margin-bottom: 1rem;
}
.article-content-wrapper h2, .article-content-wrapper h3 { 
     text-align: left;
     margin-top: 2rem;
     margin-bottom: 0.75rem;
}
.article-content-wrapper p, .article-content-wrapper ul, .article-content-wrapper ol {
    margin-bottom: 1.5rem;
    line-height: 1.7;
}
.article-content-wrapper ul, .article-content-wrapper ol {
    padding-left: 2rem;
}
.article-content-wrapper blockquote {
    border-left: 4px solid var(--konipa-red);
    padding-left: 1rem;
    margin: 1.5rem 0;
    font-style: italic;
    color: #555;
}

/* Styles pour les pages légales (mentions-legales.html, politique-confidentialite.html) */
.legal-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 1rem 0;
}
.legal-content-wrapper h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
    color: var(--konipa-blue);
}
.legal-content-wrapper p, .legal-content-wrapper ul {
    margin-bottom: 1rem;
    line-height: 1.7;
}
 .legal-content-wrapper ul {
    padding-left: 20px;
}


/* Responsivité */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero p {
        font-size: 1.15rem;
    }
    .contact-grid {
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .site-footer .container { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    .footer-column h4::after { 
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-column .contact-item {
        justify-content: center; 
    }

    header .container {
        flex-direction: column;
    }
    header .logo {
        margin-bottom: 0.5rem;
    }
    header .logo img {
        height: 60px; 
    }
    header nav { 
        width: 100%;
        margin-bottom: 0.5rem; 
    }
    header nav ul {
        margin-top: 0.5rem; 
        flex-direction: row; 
        flex-wrap: wrap; 
        justify-content: center;
    }
    header nav ul li {
        margin: 0.3rem 0.5rem; 
    }
    .language-switcher { 
        margin-left: 0;
        padding-left: 0;
        justify-content: center; 
        width: 100%;
        margin-top: 0.5rem;
    }

    .hero {
        min-height: 60vh;
    }
    .hero h1 {
        font-size: 2rem;
    }
    .hero p {
        font-size: 1rem;
    }
    .hero .btn + .btn {
        margin-left: 0;
        margin-top: 1rem; 
        display: block; 
        margin-left: auto;
        margin-right: auto;
        max-width: 250px;
    }


    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    /* Correction pour la page À Propos sur mobile */
    .about-images-container {
        float: none;
        flex-direction: column;
        width: auto;
        max-width: 90%;
        margin: 0 auto 2rem auto;
    }
    .about-images-container img {
        width: 100%;
    }


    .contact-grid {
        grid-template-columns: 1fr;
    }
    .contact-info {
        margin-top: 2.5rem;
    }
    
    .brands-container {
        gap: 2rem; 
    }
    .brand-logo {
        max-height: 50px; 
    }
    .stats-grid { 
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }
    .product-detail-header h1 { 
        font-size: 2rem;
    }
    .product-info-section h2 { 
        font-size: 1.5rem;
    }
    .product-info-section { 
        padding: 1.5rem;
    }
}

@media (max-width: 576px) { 
    .stats-grid {
        grid-template-columns: 1fr; 
    }
     .stat-item {
        margin-bottom: 1.5rem;
    }
    .stat-item:last-child {
        margin-bottom: 0;
    }
}

@media (max-width: 480px) {
    .container {
        width: 95%;
        padding: 0 15px;
    }
    .hero h1 {
        font-size: 1.8rem;
    }
    header nav ul li a {
        font-size: 0.9rem;
    }
    .btn {
        padding: 0.8rem 1.2rem;
        font-size: 0.9rem;
    }
    #backToTopBtn {
        bottom: 15px;
        right: 15px;
        padding: 0.5rem 0.8rem;
    }
    .brands-container {
        gap: 1rem; 
    }
    .brand-logo {
        max-height: 40px; 
        max-width: 100px;
    }
    .stat-number { 
        font-size: 2.2rem;
    }
    .stat-label {
        font-size: 0.9rem;
    }
}