/* ==========================================
   CSS COMPLET - PAGE À PROPOS AVEC FOOTER IDENTIQUE ACCUEIL
   ========================================== */

/* Variables de couleurs pour harmoniser avec le thème violet */
:root {
    --primary-color: #8000ff;
    --primary-light: #a050ff;
    --secondary-color: #4343FF;
    --text-color: #333333;
    --light-text: #666666;
    --white: #FFFFFF;
    --light-gray: #F8F9FA;
    --border-radius: 8px;
    --box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --animation-duration: 0.6s;
    --animation-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset et base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--white);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ==========================================
   HEADER ET NAVIGATION
   ========================================== */

header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    background-color: var(--white);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    width: 100%;
    height: 80px;
    transition: all 0.3s ease;
}

.logo {
    z-index: 1001;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.logo img {
    height: 50px;
    width: auto;
}

/* Navigation desktop */
nav {
    transition: all 0.3s ease;
}

nav ul {
    display: flex;
    list-style: none;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 8px;
    flex-wrap: nowrap;
    white-space: nowrap;
}

nav ul li {
    position: relative;
    flex-shrink: 0;
}

nav ul li a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 15px 16px;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.95rem;
}

nav ul li a:hover,
nav ul li a.active {
    color: var(--primary-color);
}

/* ==========================================
   ANIMATIONS HEADER UNIQUEMENT
   ========================================== */

/* Animations d'entrée pour le header seulement */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp var(--animation-duration) var(--animation-ease) forwards;
}

/* Délais pour effet séquentiel du header */
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }
.delay-6 { animation-delay: 0.6s; }

/* Keyframes pour le header */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Dropdown styles */
.dropdown {
    position: relative;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--text-color);
    text-decoration: none;
    padding: 15px 16px;
    transition: color 0.3s ease;
    font-weight: 500;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
    white-space: nowrap;
    font-size: 0.95rem;
}

.dropdown:hover .dropdown-toggle,
.dropdown.active .dropdown-toggle {
    color: var(--primary-color);
}

.dropdown-toggle .fa-chevron-down {
    font-size: 0.8rem;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown:hover .dropdown-toggle .fa-chevron-down,
.dropdown.active .dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background-color: var(--white);
    min-width: 280px;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 12px 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: none;
}

.dropdown:hover .dropdown-menu,
.dropdown.active .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    white-space: nowrap;
    border-radius: 8px;
    margin: 2px 8px;
    position: relative;
    overflow: hidden;
}

.dropdown-menu a:hover {
    color: var(--primary-color);
    background-color: #f8f9fa;
}

.dropdown-menu a i {
    font-size: 1rem;
    width: 16px;
    color: var(--primary-color);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.dropdown-menu a:hover i {
    color: var(--primary-color);
}

/* ==========================================
   SECTIONS PAGE À PROPOS
   ========================================== */

/* Hero Section */
.about-hero {
    background-color: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    padding: 80px 8%;
    position: relative;
    min-height: 70vh;
}

.about-hero-overlay {
    flex: 1;
    padding-right: 40px;
}

.about-hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 600;
}

.about-hero-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-hero-image img:hover {
    transform: scale(1.02);
}

/* Sections */
.founder-section,
.team-section {
    display: flex;
    align-items: center;
    padding: 60px 8%;
    background-color: var(--white);
}

.founder-content,
.team-content {
    flex: 1;
    padding-right: 40px;
}

.founder-image,
.team-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.founder-image img,
.team-image img {
    max-width: 100%;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: transform 0.3s ease;
}

.founder-image img:hover,
.team-image img:hover {
    transform: scale(1.02);
}

.founder-section h2 {
    text-align: left;
    color: var(--primary-color);
}

.founder-section h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--light-text);
    font-weight: 500;
}

/* Boutons */
.btn-purple {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    margin-top: 20px;
    transition: all 0.3s ease;
}

.btn-purple:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(128, 0, 255, 0.2);
}

.btn-purple-small {
    display: inline-block;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 10px;
    transition: all 0.3s ease;
}

.btn-purple-small:hover {
    background-color: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(128, 0, 255, 0.2);
}

/* Services Section */
.services-section {
    padding: 60px 8%;
    background-color: var(--light-gray);
    text-align: center;
}

.services-section h2 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-description {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background-color: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.service-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image img:hover {
    transform: scale(1.02);
}

.service-content {
    padding: 20px;
    text-align: left;
}

.service-content h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Values Section */
.values-section {
    padding: 60px 8%;
    background-color: var(--white);
    text-align: center;
}

.values-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.values-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    margin-top: 40px;
}

.value-card {
    flex: 1;
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
    background-color: var(--white);
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.value-icon {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.05);
}

.value-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Confiance Section */
.confiance-section {
    padding: 60px 8%;
    background-color: var(--light-gray);
    text-align: center;
}

.confiance-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.confiance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.confiance-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: all 0.3s ease;
}

.confiance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.confiance-icon {
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.confiance-card:hover .confiance-icon {
    transform: scale(1.05);
}

.confiance-card h3 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

/* Soutien Section */
.soutien-section {
    padding: 60px 8%;
    background-color: var(--white);
    text-align: center;
}

.soutien-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.partners-logos img {
    max-width: 160px;
    height: auto;
    opacity: 0.8;
    transition: all 0.3s ease;
    filter: grayscale(50%);
}

.partners-logos img:hover {
    opacity: 1;
    transform: scale(1.05);
    filter: grayscale(0%);
}

/* Testimonials Section */
.testimonials-section {
    padding: 60px 8%;
    background-color: var(--light-gray);
    text-align: center;
}

.testimonials-section h2 {
    color: var(--primary-color);
    margin-bottom: 30px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    background-color: var(--white);
    padding: 30px;
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    text-align: left;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.testimonial-stars {
    color: #FFD700;
    margin-bottom: 15px;
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonial-author {
    text-align: right;
    margin-top: 10px;
}

.testimonial-author i {
    transition: transform 0.3s ease;
}

.testimonial-card:hover .testimonial-author i {
    transform: scale(1.05);
}

/* Section avis Google */
.avis-google-section {
    margin-top: 40px;
    text-align: center;
}

.btn-avis-google {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: #4285f4;
    color: var(--white);
    padding: 12px 25px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(66, 133, 244, 0.2);
}

.btn-avis-google:hover {
    background-color: #3367d6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.3);
}

.btn-avis-google i {
    font-size: 1.1rem;
}

/* ==========================================
   FOOTER COMPACT VERSION - CSS COMPLET IDENTIQUE À L'ACCUEIL
   ========================================== */

footer {
    background-color: var(--white);
    border-top: 1px solid #e9ecef;
    padding: 40px 5% 20px;
    margin-top: 0;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Section gauche - Branding */
.footer-left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-branding h3 {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.footer-branding p {
    color: var(--light-text);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.footer-certifications {
    margin-top: 20px;
}


.footer-certifications img {
    height: 150px !important;
    width: auto !important;
    display: block !important;
    object-fit: contain !important;
}

.footer-certifications img:hover {
    transform: scale(1.05);
}

/* Section centre - Informations détaillées */
.footer-info {
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.footer-info h3 {
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.footer-info p {
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--text-color);
    font-size: 0.9rem;
}

.footer-info p:last-child {
    margin-bottom: 0;
}

.footer-info strong {
    color: var(--primary-color);
}

/* Section droite - Navigation et Newsletter */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    border-radius: 12px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
}

.footer-nav a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    position: relative;
}

.footer-nav a:hover {
    color: var(--primary-color);
    background-color: rgba(128, 0, 255, 0.1);
    transform: translateY(-1px);
}

/* Dropdown pour Notre Accompagnement dans le footer */
.footer-dropdown {
    position: relative;
}

.footer-dropdown-toggle {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.footer-dropdown-toggle:hover {
    color: var(--primary-color);
    background-color: rgba(128, 0, 255, 0.1);
    transform: translateY(-1px);
}

.footer-dropdown-toggle .fa-chevron-down {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.footer-dropdown.active .footer-dropdown-toggle .fa-chevron-down {
    transform: rotate(180deg);
}

.footer-dropdown-menu {
    position: absolute;
    bottom: calc(100% + 8px);
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--white);
    min-width: 250px;
    border-radius: 12px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    padding: 8px 0;
    border: 1px solid rgba(0, 0, 0, 0.08);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.footer-dropdown.active .footer-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0) scale(1);
}

.footer-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: var(--text-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
    white-space: nowrap;
    border-radius: 6px;
    margin: 2px 6px;
}

.footer-dropdown-menu a:hover {
    color: var(--primary-color);
    background-color: #f8f9fa;
    transform: translateY(-1px);
}

.footer-dropdown-menu a i {
    font-size: 0.9rem;
    width: 14px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.footer-newsletter {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    padding: 25px;
    border-radius: 15px;
    color: var(--white);
}

.footer-newsletter h3 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-align: center;
    color: var(--white);
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 25px;
    background-color: var(--white);
    color: var(--text-color);
    font-size: 0.9rem;
}

.newsletter-form input::placeholder {
    color: var(--light-text);
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.3);
}

.newsletter-form button {
    padding: 12px 18px;
    background-color: var(--white);
    color: var(--primary-color);
    border: none;
    border-radius: 25px;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.newsletter-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.social-icons {
    display: flex;
    gap: 12px;
    justify-content: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.2);
    color: var(--white);
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1rem;
}

.social-icons a:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

/* Footer bottom */
.footer-bottom {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px 0 0;
    margin-top: 30px;
    border-top: 1px solid #e9ecef;
    text-align: center;
}

.footer-bottom a {
    color: var(--light-text);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    padding: 6px 12px;
    border-radius: 4px;
}

.footer-bottom a:hover {
    color: var(--primary-color);
    background-color: rgba(128, 0, 255, 0.1);
}

/* ==========================================
   RESPONSIVE DESIGN
   ========================================== */

@media (max-width: 1024px) {
    .about-hero {
        flex-direction: column;
        min-height: auto;
    }
    
    .about-hero-overlay {
        margin-bottom: 30px;
        padding-right: 0;
        text-align: center;
    }
    
    .founder-section,
    .team-section {
        flex-direction: column;
    }
    
    .founder-content,
    .team-content {
        padding-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }
    
    .founder-section h2 {
        text-align: center;
    }
    
    .services-grid,
    .confiance-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        flex-direction: column;
    }

    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-right {
        grid-column: span 2;
    }

    .footer-nav {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .partners-logos img {
        max-width: 120px;
    }
    
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    /* Responsive design pour le dropdown sur mobile */
    .dropdown-menu {
        position: static;
        min-width: auto;
        box-shadow: none;
        margin-top: 10px;
        border: 1px solid #ddd;
        width: 100%;
    }
    
    .dropdown.open .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    /* Footer mobile */
    footer {
        padding: 30px 4% 15px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .footer-branding {
        text-align: center;
    }

    .footer-branding h3 {
        font-size: 1.4rem;
        margin-bottom: 10px;
    }

    .footer-branding p {
        font-size: 0.9rem;
        margin-bottom: 6px;
    }

    .footer-info {
        padding: 20px;
    }

    .footer-info h3 {
        font-size: 1.1rem;
        text-align: center;
    }

    .footer-info p {
        font-size: 0.85rem;
        text-align: center;
    }

    .footer-nav {
        grid-template-columns: repeat(3, 1fr);
        gap: 8px;
        padding: 15px;
    }

    .footer-nav a,
    .footer-dropdown-toggle {
        font-size: 0.8rem;
        padding: 6px 8px;
    }

    .footer-dropdown-menu {
        min-width: 200px;
        bottom: calc(100% + 5px);
    }

    .footer-dropdown-menu a {
        font-size: 0.8rem;
        padding: 8px 12px;
    }

    .footer-newsletter {
        padding: 20px;
    }

    .footer-newsletter h3 {
        font-size: 1rem;
    }

    .newsletter-form {
        flex-direction: column;
        gap: 8px;
    }

    .social-icons {
        gap: 10px;
    }

    .social-icons a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .footer-bottom {
        gap: 10px;
        padding: 15px 0 0;
        margin-top: 20px;
    }

    .footer-bottom a {
        font-size: 0.75rem;
        padding: 4px 8px;
    }

    .footer-bottom a:nth-child(n+7) {
        display: none;
    }

    .footer-certifications {
        text-align: center;
    }

    .footer-certifications img {
        height: 50px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.6rem;
    }

    .partners-logos img {
        max-width: 100px;
    }

    /* Footer très petit mobile */
    footer {
        padding: 25px 3% 12px;
    }

    .footer-content {
        gap: 20px;
    }

    .footer-branding h3 {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .footer-branding p {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }

    .footer-info {
        padding: 15px;
    }

    .footer-info h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }

    .footer-info p {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }

    .footer-nav {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        padding: 12px;
    }

    .footer-nav a,
    .footer-dropdown-toggle {
        font-size: 0.75rem;
        padding: 5px 6px;
    }

    .footer-dropdown-menu {
        min-width: 180px;
    }

    .footer-dropdown-menu a {
        font-size: 0.75rem;
        padding: 6px 10px;
    }

    .footer-newsletter {
        padding: 15px;
    }

    .footer-newsletter h3 {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }

    .newsletter-form input,
    .newsletter-form button {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .social-icons {
        gap: 8px;
        margin-top: 12px;
    }

    .social-icons a {
        width: 32px;
        height: 32px;
        font-size: 0.85rem;
    }

    .footer-bottom {
        gap: 8px;
        padding: 12px 0 0;
        margin-top: 15px;
    }

    .footer-bottom a {
        font-size: 0.7rem;
        padding: 3px 6px;
    }

    .footer-bottom a:nth-child(n+5) {
        display: none;
    }

    .footer-certifications img {
        height: 45px;
    }
}