/* --- Variables & Identity --- */
:root {
    --primary-color: #1A3C40;
    /* Deep Teal - Professional & Medical */
    --secondary-color: #417D7A;
    /* Sage Green - Health & Vitality */
    --accent-color: #EDE6DB;
    /* Sand/Cream - Warmth */
    --light-bg: #F7F9F9;
    --white: #FFFFFF;
    --text-color: #2C363F;
    --text-muted: #667A7C;

    --font-heading: 'Cinzel', serif;
    --font-body: 'Outfit', sans-serif;

    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    --container-width: 1200px;
}

/* --- Base Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    background-color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 600;
    color: var(--primary-color);
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 40px;
}

/* --- Components --- */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(26, 60, 64, 0.2);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--white);
}

/* --- Navigation --- */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: var(--transition);
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.02);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 60px;
    width: auto;
    display: block;
    transition: var(--transition);
}

.navbar.scrolled .logo img {
    height: 50px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Dropdown Menu Styles */
.dropdown {
    position: relative;
}

.dropdown-trigger {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
}

.chevron-icon {
    width: 14px;
    height: 14px;
    transition: var(--transition);
}

.dropdown:hover .chevron-icon {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    background-color: var(--white);
    min-width: 220px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.05);
    z-index: 1001;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    width: 100%;
}

.dropdown-menu a {
    display: block;
    padding: 10px 24px;
    font-size: 0.85rem !important;
    text-transform: none !important;
    font-weight: 500;
    color: var(--text-color) !important;
    letter-spacing: 0.5px !important;
    transition: var(--transition);
}

.dropdown-menu a:hover {
    background-color: rgba(65, 125, 122, 0.08);
    color: var(--secondary-color) !important;
}

.btn-cta {
    background-color: var(--secondary-color);
    color: var(--white) !important;
    padding: 12px 25px;
    border-radius: 50px;
}

.hamburger {
    display: none;
    cursor: pointer;
    color: var(--primary-color);
}

/* --- Hero Section --- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background-color: var(--light-bg);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(to right, var(--light-bg) 0%, rgba(247, 249, 249, 0.95) 15%, rgba(247, 249, 249, 0.5) 40%, rgba(0, 0, 0, 0.15) 100%), url('facade.jpg');
    background-size: cover;
    background-position: center;
    clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.hero-content {
    max-width: 650px;
    position: relative;
    z-index: 2;
}

.badge {
    display: inline-block;
    padding: 8px 20px;
    background-color: var(--accent-color);
    color: var(--primary-color);
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero-content h1 {
    font-size: 4.5rem;
    margin-bottom: 25px;
    color: var(--primary-color);
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.8);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 20px;
}

@media (max-width: 1024px) {
    .hero::before {
        display: block;
        width: 100%;
        clip-path: none;
        background: linear-gradient(rgba(247, 249, 249, 0.90), rgba(247, 249, 249, 0.90)), url('facade.jpg');
        background-size: cover;
        background-position: center;
    }

    .hero-content {
        max-width: 100%;
        text-align: center;
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hamburger {
        display: block;
        padding: 10px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: white;
        padding: 30px;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
        text-align: center;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .logo img {
        height: 50px;
    }
}

/* --- Sections Common --- */
.section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 70px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--secondary-color);
    margin: 25px auto;
    border-radius: 2px;
}

/* --- Expertises Tabs --- */
.tabs-container {
    margin-top: 50px;
}

.tabs-nav-wrapper {
    overflow-x: auto;
    scrollbar-width: none; /* Firefox */
    margin-bottom: 40px;
    padding: 5px;
}

.tabs-nav-wrapper::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

.tabs-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    min-width: max-content;
    margin: 0 auto;
}

.tab-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 24px;
    background-color: var(--light-bg);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary-color);
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.tab-btn i {
    width: 18px;
    height: 18px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.tab-btn:hover {
    background-color: var(--accent-color);
    transform: translateY(-2px);
}

.tab-btn.active {
    background-color: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 10px 20px rgba(26, 60, 64, 0.15);
}

.tab-btn.active i {
    color: var(--white);
}

/* Tabs Panels */
.tabs-content {
    position: relative;
    background: var(--white);
    border-radius: 32px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
}

.tab-panel {
    display: none;
    padding: 60px;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-panel.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.panel-layout {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 60px;
    align-items: start;
}

.panel-text h3 {
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.panel-text .lead {
    font-size: 1.15rem;
    font-weight: 500;
    color: var(--secondary-color);
    margin-bottom: 25px;
    line-height: 1.6;
}

.panel-text p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.panel-features {
    display: grid;
    gap: 15px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-color);
}

.feature-item i {
    color: var(--secondary-color);
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.panel-practitioners {
    background-color: var(--light-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.02);
}

.panel-practitioners h4 {
    font-size: 1.1rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.practitioners-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.practitioner-tag {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: var(--white);
    padding: 6px 16px 6px 6px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary-color);
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03);
    transition: var(--transition);
}

.practitioner-tag:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.06);
    border-color: rgba(65, 125, 122, 0.15);
}

.practitioner-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    border: 2px solid var(--white);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .panel-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .tab-panel {
        padding: 40px 30px;
    }
    
    .panel-text h3 {
        font-size: 1.8rem;
    }
}

/* --- Team Section --- */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 30px;
}

.team-card {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
    text-align: center;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.03);
}

.team-image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
}

.team-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.95;
    border-top-left-radius: 28px;
    border-top-right-radius: 28px;
    transition: var(--transition);
}

.team-image .placeholder-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--primary-color);
    opacity: 0.3;
}

.team-info {
    padding: 25px;
}

.team-info h3 {
    margin-bottom: 5px;
    font-size: 1.2rem;
}

.team-info p {
    color: var(--secondary-color);
    font-weight: 600;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
}

.team-card:hover .team-image img {
    opacity: 1;
    transform: scale(1.05);
}

/* --- Contact & Localisation --- */
#map {
    height: 450px;
    width: 100%;
    border-radius: 32px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.02);
    overflow: hidden;
    margin-top: 30px;
}

.bg-light {
    background-color: var(--light-bg);
}

/* --- Footer --- */
footer {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 80px 0 30px;
}

footer h4 {
    color: var(--accent-color);
    font-size: 1.15rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.footer-info p {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.footer-info p i {
    color: var(--secondary-color);
    width: 18px;
    height: 18px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

/* --- Équipements Section --- */
.equipements-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.equipement-card {
    background: var(--white);
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(0, 0, 0, 0.03);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.equipement-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
    border-color: rgba(65, 125, 122, 0.15);
}

.equipement-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(65, 125, 122, 0.08);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    color: var(--secondary-color);
    transition: var(--transition);
}

.equipement-card:hover .equipement-icon {
    background-color: var(--primary-color);
    color: var(--white);
    transform: scale(1.05);
}

.equipement-icon i {
    width: 28px;
    height: 28px;
}

.equipement-info h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.equipement-info p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Partner links inside paragraphs */
.partner-link {
    color: var(--secondary-color);
    font-weight: 600;
    text-decoration: underline;
    transition: var(--transition);
}

.partner-link:hover {
    color: var(--primary-color);
}

/* --- Responsive Adjustments for Mobile (max-width: 576px) --- */
@media (max-width: 576px) {
    /* Enforce 2 columns for the team grid to keep photos beautifully proportioned on smartphones */
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    .team-card {
        border-radius: 20px;
    }
    
    .team-image {
        border-top-left-radius: 20px;
        border-top-right-radius: 20px;
    }
    
    .team-info {
        padding: 15px 8px;
    }
    
    .team-info h3 {
        font-size: 0.95rem;
        margin-bottom: 4px;
    }
    
    .team-info p {
        font-size: 0.68rem;
        letter-spacing: 0.3px;
        line-height: 1.3;
    }

    /* General layout optimizations for narrow screens */
    .container {
        padding: 0 20px;
    }

    .section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }
}

/* --- Cookie Banner & Modal --- */
.cookie-banner {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    width: 90%;
    max-width: 850px;
    background-color: var(--primary-color);
    color: var(--white);
    padding: 30px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.15);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 20px;
    transition: opacity 0.5s ease, transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    opacity: 1;
}

.cookie-banner.hidden {
    opacity: 0;
    transform: translateX(-50%) translateY(100px);
    pointer-events: none;
}

.cookie-content {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.cookie-icon {
    background-color: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-color);
    flex-shrink: 0;
}

.cookie-icon i {
    width: 24px;
    height: 24px;
}

.cookie-text h3 {
    color: var(--accent-color);
    font-size: 1.15rem;
    margin-bottom: 8px;
    font-family: var(--font-body);
    font-weight: 600;
}

.cookie-text p {
    font-size: 0.88rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
}

.cookie-text a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-actions {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-cookie-primary {
    background-color: var(--secondary-color);
    color: var(--white);
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-primary:hover {
    background-color: var(--white);
    color: var(--primary-color);
    transform: translateY(-2px);
}

.btn-cookie-secondary {
    background-color: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-cookie-secondary:hover {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
}

/* Cookie Settings Modal */
.cookie-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.cookie-modal-overlay.hidden {
    opacity: 0;
    pointer-events: none;
}

.cookie-modal {
    background-color: var(--white);
    width: 90%;
    max-width: 600px;
    border-radius: 28px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    transform: scale(1) translateY(0);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cookie-modal-overlay.hidden .cookie-modal {
    transform: scale(0.9) translateY(30px);
}

.cookie-modal-header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 25px 35px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-modal-header h3 {
    color: var(--accent-color);
    font-size: 1.3rem;
    margin: 0;
}

.close-cookie-modal {
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 1.8rem;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
    line-height: 1;
}

.close-cookie-modal:hover {
    opacity: 1;
}

.cookie-modal-body {
    padding: 35px;
    max-height: 450px;
    overflow-y: auto;
}

.cookie-modal-body p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 25px;
}

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.cookie-option:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cookie-option:first-of-type {
    padding-top: 0;
}

.cookie-option-info {
    flex-grow: 1;
}

.cookie-option-info strong {
    display: block;
    color: var(--primary-color);
    font-size: 0.98rem;
    margin-bottom: 5px;
}

.cookie-option-info p {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin: 0;
}

.cookie-switch-wrapper {
    flex-shrink: 0;
}

.switch-always-active {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Switch toggle styling */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
}

.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #E2E8F0;
    transition: .3s;
    border-radius: 34px;
}

.cookie-slider:before {
    position: absolute;
    content: "";
    height: 20px;
    width: 20px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    transition: .3s;
    border-radius: 50%;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.cookie-switch input:checked + .cookie-slider {
    background-color: var(--secondary-color);
}

.cookie-switch input:checked + .cookie-slider:before {
    transform: translateX(22px);
}

.cookie-modal-footer {
    padding: 25px 35px;
    background-color: var(--light-bg);
    display: flex;
    justify-content: flex-end;
}

.cookie-modal-footer button {
    font-size: 0.9rem;
    padding: 12px 30px;
}

@media (max-width: 768px) {
    .cookie-banner {
        padding: 20px 25px;
        bottom: 15px;
        border-radius: 16px;
    }
    
    .cookie-content {
        gap: 15px;
    }
    
    .cookie-icon {
        width: 40px;
        height: 40px;
        border-radius: 12px;
    }
    
    .cookie-icon i {
        width: 18px;
        height: 18px;
    }
    
    .cookie-actions {
        justify-content: center;
        width: 100%;
    }
    
    .btn-cookie-primary, .btn-cookie-secondary {
        width: 100%;
        text-align: center;
        padding: 12px;
    }
    
    .cookie-modal-body {
        padding: 25px;
    }
    
    .cookie-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
}