:root {
    /* Color Palette - Harmonized with MLTA Logo */
    --mlta-navy: #00162B;
    --mlta-gold: #FBBD08;
    --mlta-gold-hover: #e5ad07;
    --primary-gold: var(--mlta-gold);
    --primary-gold-hover: var(--mlta-gold-hover);
    --secondary-teal: var(--mlta-navy); /* Redirecting old teal usage to navy */
    --secondary-teal-hover: #00254a;
    --accent-orange: #E1870A;
    --bg-white: #FFFFFF;
    --bg-light: #F8F8F8;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #FFFFFF;
    
    /* Typography */
    --font-main: 'Poppins', sans-serif;
    --font-serif: 'Poppins', sans-serif; /* Uniformisation demandée par l'utilisateur */
    
    /* Spacing & Transitions */
    --section-padding: 80px 20px;
    --transition-smooth: all 0.3s ease;
    --border-radius-pill: 50px;
    --border-radius-card: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--bg-white);
    overflow-x: hidden;
}

h1, h2, h3 {
    line-height: 1.2;
}

img {
    image-rendering: -webkit-optimize-contrast; /* Optimise la netteté sur chrome/safari */
    image-rendering: high-quality;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: var(--border-radius-pill);
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-smooth);
    border: none;
    text-align: center;
}

.btn-gold {
    background-color: var(--mlta-navy);
    color: var(--white);
}

.btn-gold:hover {
    background-color: #152a52;
    transform: translateY(-2px);
}

.btn-teal {
    background-color: #dc2626; /* Rouge vif */
    color: var(--white);
}

.btn-teal:hover {
    background-color: #b91c1c;
    transform: translateY(-2px);
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-teal);
    text-align: center;
    margin-bottom: 40px;
}

/* Header */
.utility-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px; /* Espacement entre le téléphone, le séparateur et le lieu */
}

/* Optional separator styling */
.utility-separator {
    color: var(--mlta-gold); /* Petit accent or pour séparer élégamment */
    margin: 0 5px;
}

/* Header & Logo Shiva Style */
.header-wrapper {
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    background: transparent; /* Allow logo container to stand out */
}

.main-header {
    background: var(--white);
    padding: 0;
    height: 100px;
    display: flex;
    align-items: center;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px 0 190px; /* padding-left réserve l'espace pour le logo absolu */
    overflow: visible;
}

/* Bouton menu mobile - caché par défaut sur Desktop */
.mobile-menu-toggle {
    display: none;
}

/* Revert nav-actions to default */
.nav-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
    margin-left: 20px; /* Pousse les boutons vers la droite */
}

/* Le header-wrapper est l'ancre absolue du logo */
.header-wrapper {
    overflow: visible;
    position: relative;
}

.logo-wrapper {
    position: absolute; /* Ancré au header-wrapper (position:relative) */
    top: 0;             /* Colle au sommet absolu du header (utility bar incluse) */
    left: max(20px, calc(50% - 580px)); /* Aligné avec le bord gauche du container 1200px */
    z-index: 1001;
}

.logo-container {
    background: var(--white);
    width: 150px;
    height: 150px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 0 5px 5px;
    /* Plus aucun positionnement spécial : simplement dans son wrapper absolu */
}

.logo {
    display: block;
    width: 100%;
    height: 100%;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Keeps aspect ratio while filling the space */
}

/* Assure que main-header ne coupe pas le logo */
.main-header {
    overflow: visible;
}

/* Fix for utility header padding if logo starts from very top */
.utility-header {
    background-color: var(--bg-light);
    height: 40px; /* Hauteur fixe pour garantir l'ancrage du logo */
    padding: 0;
    display: flex;
    align-items: center; /* Centrage vertical du texte */
    font-size: 0.85rem;
    color: var(--text-muted);
    position: relative;
    z-index: 999;
}

.nav-links {
    display: flex;
    flex: 1; /* Prend tout l'espace disponible entre le logo et les boutons */
    justify-content: center; /* Centre les liens dans cet espace */
    gap: 45px;
    align-items: center;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary-teal);
    position: relative;
    white-space: nowrap;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-gold);
    transition: var(--transition-smooth);
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%; /* S'assurer qu'il prend toute la hauteur pour que le hover soit facile */
}

.dropbtn {
    cursor: pointer;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    z-index: 1000;
    border-radius: var(--border-radius-card);
    top: calc(100% + 20px); /* Laisse de la place sous la ligne or */
    left: -20px; /* Centrer à peu près sous "Nos Services" */
    padding: 10px 0;
}

/* Pont invisible pour garder le hover actif quand la souris descend */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 0;
    width: 100%;
    height: 20px;
    background: transparent;
}

.dropdown-content a {
    color: var(--text-main);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    font-size: 0.9rem;
    white-space: normal; /* Permet aux longs noms de service de faire un retour à la ligne */
    border-bottom: 1px solid var(--bg-light); /* Séparateur léger */
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a::after {
    display: none; /* Pas de ligne or sur les sous-liens */
}

.dropdown-content a:hover {
    background-color: var(--bg-light);
    color: var(--primary-gold);
    padding-left: 25px; /* Petit effet de flèche au survol */
}

.dropdown:hover .dropdown-content {
    display: block;
    animation: fadeInDropdown 0.3s ease forwards;
}

.dropdown:hover .dropbtn {
    color: var(--primary-gold);
}

.dropdown:hover .dropbtn::after {
    width: 100%; /* Maintient la ligne or quand on est dans le menu déroulant */
}

@keyframes fadeInDropdown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Revert nav-actions to default */
.nav-actions {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

/* Hero Section */
.hero {
    position: relative;
    height: 80vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    z-index: -1;
    filter: brightness(0.9) contrast(1.15) saturate(1.05); /* Boosté pour plus de netteté perçue */
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    image-rendering: high-quality;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    transform: translateZ(0); /* Hardware acceleration */
    transition: var(--transition-smooth);
}

.hero-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0, 22, 43, 0.55) 0%, rgba(0, 22, 43, 0.35) 100%);
    z-index: 0;
}

.hero-content {
    max-width: 600px;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
}

/* Global Section Title */
.section-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--mlta-navy);
    margin-bottom: 50px;
    font-family: var(--font-serif);
}

/* Services Section */
.services {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: var(--border-radius-card);
    text-align: center;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    overflow: hidden; /* Assure que l'image rectangulaire respecte les angles arrondis de la carte */
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: calc(100% + 80px); /* 100% + 40px padding gauche + 40px padding droit */
    height: 200px;
    margin: -40px -40px 25px -40px; /* Annule le padding haut/gauche/droite de la carte */
    border-radius: 0; 
    border: none;
    border-bottom: 4px solid var(--mlta-gold); /* Un fin liseré or sépare la photo du texte */
    overflow: hidden;
    position: relative;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    margin-bottom: 15px;
    color: var(--secondary-teal);
}

.service-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--mlta-navy);
    font-weight: 600;
    font-size: 0.9rem;
    position: relative;
    padding-bottom: 2px;
}

.service-link i {
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.service-link:hover i {
    transform: translateX(5px);
}

.service-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30%;
    height: 2px;
    background-color: var(--mlta-gold);
    transition: width 0.3s ease;
}

.service-link:hover::after {
    width: 100%;
}

/* Contact Form */
.contact {
    padding: var(--section-padding);
}

/* How It Works Section */
.how-it-works-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
    text-align: center;
}

.process-wrapper {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 60px auto 0;
    gap: 30px;
}

/* The dotted connecting line is removed for the new card design */
.process-line {
    display: none;
}

.process-step {
    background: var(--white);
    padding: 30px 25px;
    border-radius: var(--border-radius-card);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    flex: 1 1 200px;
    max-width: 300px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: var(--transition-smooth);
    border-bottom: 4px solid var(--mlta-gold); /* Rappel esthétique */
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--mlta-navy);
    margin-bottom: 15px;
    height: auto; /* Remove fixed height */
    align-items: center; /* Center icons */
}

.step-number {
    width: 40px;
    height: 40px;
    background-color: var(--mlta-gold);
    border: none; /* Remove border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mlta-navy); /* Contraste fort */
    margin-bottom: 20px;
    position: static; /* Remove relative positioning */
}

/* Small arrows on the dotted line next to the numbers */
.step-number::after {
    display: none;
}
.process-step:last-child .step-number::after {
    display: none; /* No arrow after the last step */
}


.step-title {
    font-size: 1.1rem;
    color: var(--mlta-navy);
    margin-bottom: 15px;
    line-height: 1.3;
    min-height: auto; /* Remove fixed min-height */
}

.step-desc {
    font-size: 0.9rem;
    color: var(--text-main);
    line-height: 1.5;
}

/* Gallery Section for Service Pages */
.gallery-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: var(--transition-smooth);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    background: linear-gradient(transparent, rgba(0, 22, 43, 0.8));
    color: var(--white);
    opacity: 0;
    transition: var(--transition-smooth);
    display: flex;
    align-items: flex-end;
}

.gallery-overlay h3 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 500;
}

@media (max-width: 900px) {
    .process-wrapper {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }
    .process-line {
        display: none; /* Hide horizontal line on mobile */
    }
    .process-step {
        max-width: 100%;
        width: 100%;
    }
    .step-number::after {
        display: none; /* No arrow for vertical layout in card design */
    }
}


/* Témoignages Section */
.temoignages-section {
    padding: var(--section-padding);
    background-color: var(--bg-light);
}

.temoignages-grid {
    display: none; /* Remplacée par le carrousel */
}

/* Carrousel */
.carousel-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
    position: relative;
}

.carousel-viewport {
    overflow: hidden;
    width: 100%;
    border-radius: var(--border-radius-card);
}

.carousel-track {
    display: flex;
    gap: 25px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.temoignage-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--border-radius-card);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    gap: 15px;
    border-left: 4px solid var(--mlta-gold);
    flex: 0 0 100%; /* Par défaut (mobile) */
    box-sizing: border-box;
    width: 100%;
}

@media (min-width: 992px) {
    .temoignage-card {
        flex: 0 0 calc(33.333% - 17px);
    }
}

.carousel-btn {
    background: var(--mlta-navy);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
    line-height: 1;
}

.carousel-btn:hover {
    background: var(--mlta-gold);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--text-muted);
    cursor: pointer;
    transition: var(--transition-smooth);
    opacity: 0.4;
}

.carousel-dot.active {
    background: var(--mlta-gold);
    opacity: 1;
    transform: scale(1.3);
}

.temoignage-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.temoignage-stars {
    color: var(--mlta-gold);
    font-size: 1.2rem;
    letter-spacing: 2px;
}

.temoignage-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--text-main);
    font-style: italic;
    flex: 1;
}

.temoignage-author {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid var(--bg-light);
    padding-top: 15px;
}

.temoignage-avatar {
    width: 45px;
    height: 45px;
    background: var(--mlta-navy);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 700;
    flex-shrink: 0;
}

.temoignage-author strong {
    display: block;
    font-size: 0.9rem;
    color: var(--mlta-navy);
}

.temoignage-author span {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* Valeurs Section */
.valeurs-section {
    padding: var(--section-padding);
    background-color: var(--bg-light); /* Slight off-white to contrast with the previous section */
    text-align: center;
}

.valeurs-section .section-title {
    color: var(--mlta-navy); /* Titre en Marine au lieu de Or */
    margin-bottom: 60px;
}

.valeurs-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.valeur-item {
    flex: 1;
    min-width: 180px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.valeur-icon {
    font-size: 3.5rem;
    color: var(--mlta-navy); /* Icônes en Marine MLTA */
    margin-bottom: 20px;
}

.valeur-item h3 {
    font-size: 1.2rem;
    color: var(--mlta-navy); /* Sous-titres valeurs en Marine */
    margin-bottom: 15px;
}

.valeur-item p {
    font-size: 0.85rem;
    color: var(--text-main);
    line-height: 1.5;
}

@media (max-width: 768px) {
    .valeurs-grid {
        justify-content: center;
    }
    .valeur-item {
        flex: 0 0 45%;
        margin-bottom: 30px;
    }
}
@media (max-width: 480px) {
    .valeur-item {
        flex: 0 0 100%;
    }
}

/* FAQ Section */
.faq-section {
    padding: var(--section-padding);
    background-color: var(--bg-white);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background-color: var(--bg-light);
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item[open] {
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-color: var(--mlta-navy); /* Bordure Marine au clic */
}

.faq-item summary {
    padding: 20px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--mlta-navy);
    cursor: pointer;
    list-style: none; /* Remove default triangle in some browsers */
    position: relative;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
    display: none; /* Remove default triangle in Safari/Chrome */
}

/* Custom indicator icon */
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--mlta-gold);
    line-height: 1;
    font-weight: 300;
    transition: transform 0.3s ease;
}

.faq-item[open] summary::after {
    content: '−'; /* minus sign */
    transform: rotate(180deg);
}

.faq-content {
    padding: 0 20px 20px;
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.6;
    border-top: 1px solid #eaeaea;
    margin-top: 5px;
    padding-top: 15px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--border-radius-card);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-family: inherit;
}

/* Footer */
footer {
    background-color: var(--secondary-teal);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo-wrapper {
    background-color: var(--white);
    padding: 15px;
    border-radius: 8px;
    display: inline-block;
    width: 140px;
    height: 140px;
}

.footer-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.2rem;
    color: var(--primary-gold);
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a:hover {
    color: var(--primary-gold);
    padding-left: 5px; /* Slight indent on hover for interactivity */
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.9rem;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none; /* Cache les liens car ils ne tiennent pas, mais sans menu hamburger */
    }

    /* Actions Header Mobile */
    .nav-actions {
        display: flex !important;
        gap: 10px;
        margin-left: auto;
        align-items: center;
    }

    .nav-actions .btn-gold {
        display: none;
    }

    .nav-actions .btn-teal {
        padding: 10px 15px;
        font-size: 0.9rem;
        white-space: nowrap;
        background-color: #dc2626 !important;
        color: #fff !important;
        border-radius: 8px;
        font-weight: 600;
    }

    .utility-header {
        display: none !important;
    }

    .logo-wrapper {
        position: absolute;
        top: 0;
        left: 10px;
        z-index: 1005;
    }

    .logo-container {
        width: 90px;
        height: 90px;
        padding: 10px;
        background: var(--white);
        border-radius: 0 0 15px 15px;
    }

    .nav-content {
        padding: 0 10px;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        height: 100%;
    }

    .main-header {
        height: 80px;
        background: #fff !important;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr !important;
    }

    :root {
        --section-padding: 40px 20px;
    }
}




/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: -200%;
    left: 20px;
    right: 20px;
    background: #fff;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
    padding: 25px;
    border-radius: 15px;
    z-index: 10000;
    transition: bottom 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto 20px auto;
    border: 1px solid rgba(0,0,0,0.05);
}

.cookie-banner.show {
    bottom: 20px;
}

.cookie-content {
    flex: 1;
    min-width: 300px;
}

.cookie-content h4 {
    margin: 0 0 10px 0;
    color: var(--mlta-navy);
    font-size: 1.1rem;
}

.cookie-content p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
    line-height: 1.5;
}

.cookie-content a {
    color: var(--mlta-gold);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.cookie-btn {
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 0.9rem;
}

.btn-accept {
    background: var(--mlta-gold);
    color: #00162b;
}

.btn-refuse {
    background: #f1f1f1;
    color: #333;
}

.cookie-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .cookie-banner {
        flex-direction: column;
        text-align: center;
        bottom: -200%;
        left: 10px;
        right: 10px;
        padding: 20px;
    }
    
    .cookie-actions {
        width: 100%;
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
}
