/* #9C1C66, #34495E, #F1A9B8, #FFF5F9 */
:root {
    --color-primary: #9C1C66;
    --color-secondary: #34495E;
    --color-accent: #F1A9B8;
    --bg-tint: #FFF5F9;
    --text-dark: #222222;
    --text-light: #FFFFFF;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Plus Jakarta Sans', Arial, sans-serif;
}

/* Global Reset & Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-tint);
    line-height: 1.6;
    font-size: clamp(15px, 2vw, 17px);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-secondary);
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* Buttons (Sharp & Dramatic) */
.btn {
    display: inline-block;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    border-radius: 0 !important; /* Sharp Style */
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--text-light);
    box-shadow: 0 12px 32px rgba(156, 28, 102, 0.3); /* Dramatic Shadow */
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    color: var(--text-light);
    box-shadow: 0 16px 40px rgba(52, 73, 94, 0.4);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border: 2px solid var(--color-secondary);
}

.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-secondary);
    box-shadow: 0 12px 32px rgba(241, 169, 184, 0.4);
}

.btn-accent:hover {
    background-color: var(--color-primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--text-light);
    border-bottom: 2px solid var(--color-primary);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo - selalu di kiri */
.logo {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: bold;
    color: var(--color-primary);
    z-index: 100;
}

/* Hamburger - SELALU DI KANAN */
.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none; /* Tampil hanya di mobile */
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    margin: 5px 0;
    transition: 0.3s;
}

.menu-checkbox {
    display: none;
}

/* Desktop Navigation */
.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
    margin: 0;
    padding: 0;
}

.desktop-nav .nav-list a {
    color: var(--color-secondary);
    font-weight: 600;
    font-size: 16px;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-primary);
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--color-secondary);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-nav li a {
    color: var(--text-light);
    font-size: 18px;
    display: block;
}

/* Mobile Adaptation */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block; /* Menunjukkan hamburger di mobile */
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    /* Animasi Hamburger */
    #menu-toggle:checked ~ .hamburger .line:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(2) {
        opacity: 0;
    }

    #menu-toggle:checked ~ .hamburger .line:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* Editorial Style Sections */
.section-tag {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.section-header-editorial {
    margin-bottom: 48px;
}

.section-header-editorial h2 {
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
}

.text-center {
    text-align: center;
}

/* Hero Asymmetric Layout (Index) */
.hero-asymmetric {
    padding: 48px 16px;
    background-color: var(--text-light);
    border-bottom: 4px solid var(--color-secondary);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.hero-content {
    max-width: 520px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-badge {
    color: var(--color-primary);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.1;
    margin-bottom: 24px;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hero-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .hero-actions {
        flex-direction: row;
    }
}

@media (min-width: 1024px) {
    .hero-asymmetric {
        padding: 80px 24px;
    }
    .hero-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 64px;
    }
    .hero-image-wrapper {
        margin-right: -100px; /* Overlap effect */
    }
    .hero-image {
        height: 500px;
    }
}

/* Benefits Section (5-Asymmetric Cards) */
.benefits-section {
    padding: 48px 16px;
}

.benefits-grid-asymm {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    background-color: var(--text-light);
    padding: 32px;
    border: 1px solid rgba(52, 73, 94, 0.1);
    box-shadow: 0 24px 64px rgba(52, 73, 94, 0.15); /* Dramatic Shadow */
    transition: all 0.3s ease;
    border-radius: 0 !important; /* Sharp */
}

.benefit-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 32px 80px rgba(52, 73, 94, 0.25);
}

.card-num {
    font-size: 36px;
    font-family: var(--font-heading);
    color: var(--color-accent);
    margin-bottom: 16px;
    font-weight: bold;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

@media (min-width: 768px) {
    .benefits-grid-asymm {
        grid-template-columns: repeat(6, 1fr);
    }
    .card-large {
        grid-column: span 3;
    }
    .card-small {
        grid-column: span 2;
    }
}

@media (min-width: 1024px) {
    .benefits-section {
        padding: 80px 24px;
    }
}

/* Checklist Section (2 Columns) */
.checklist-section {
    background-color: var(--text-light);
    padding: 48px 16px;
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
}

.checklist-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.checklist-info h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 20px;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.checklist-item {
    display: flex;
    gap: 16px;
}

.check-icon {
    font-size: 24px;
    color: var(--color-primary);
    font-weight: bold;
    flex-shrink: 0;
}

.checklist-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .checklist-section {
        padding: 80px 24px;
    }
    .checklist-wrapper {
        grid-template-columns: 0.8fr 1.2fr;
        gap: 64px;
    }
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 48px 16px;
}

.cta-banner-box {
    background-color: var(--color-primary);
    color: var(--text-light);
    padding: 48px 24px;
    text-align: center;
    box-shadow: 0 24px 64px rgba(156, 28, 102, 0.3);
}

.cta-banner-box h2 {
    color: var(--text-light);
    font-size: clamp(28px, 4vw, 44px);
    margin-bottom: 16px;
}

.cta-banner-box p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto 32px auto;
}

@media (min-width: 1024px) {
    .cta-banner-section {
        padding: 80px 24px;
    }
    .cta-banner-box {
        padding: 80px 48px;
    }
}

/* FAQ Accordion Section */
.faq-section {
    padding: 48px 16px;
    background-color: var(--text-light);
}

.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid rgba(52, 73, 94, 0.2);
    padding: 16px 0;
}

.faq-item summary {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--color-secondary);
    cursor: pointer;
    outline: none;
    padding: 10px 0;
}

.faq-answer {
    padding: 16px 0;
}

@media (min-width: 1024px) {
    .faq-section {
        padding: 80px 24px;
    }
}

/* Expert Section */
.expert-section {
    padding: 48px 16px;
}

.expert-card-box {
    background-color: var(--text-light);
    border: 2px solid var(--color-secondary);
    display: grid;
    grid-template-columns: 1fr;
    box-shadow: 0 24px 64px rgba(52, 73, 94, 0.15);
}

.expert-image-placeholder {
    width: 100%;
}

.expert-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.expert-quote-content {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.expert-badge {
    color: var(--color-primary);
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 16px;
}

blockquote {
    font-family: var(--font-heading);
    font-size: 20px;
    font-style: italic;
    color: var(--color-secondary);
    margin-bottom: 24px;
    position: relative;
}

.expert-meta strong {
    display: block;
    font-size: 18px;
    color: var(--color-primary);
}

.expert-meta span {
    font-size: 14px;
    color: #666;
}

@media (min-width: 768px) {
    .expert-card-box {
        grid-template-columns: 0.8fr 1.2fr;
    }
    .expert-img {
        height: 100%;
    }
}

@media (min-width: 1024px) {
    .expert-section {
        padding: 80px 24px;
    }
    .expert-quote-content {
        padding: 64px;
    }
}

/* PROGRAM PAGE STYLES */
.program-intro {
    padding: 64px 16px;
    background-color: var(--text-light);
    text-align: center;
    border-bottom: 2px solid var(--color-primary);
}

.intro-lead {
    font-size: 20px;
    max-width: 800px;
    margin: 20px auto 0 auto;
    color: #555;
}

.numbered-program-steps {
    padding: 48px 16px;
}

.program-step-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 32px 0;
    border-bottom: 1px solid rgba(52, 73, 94, 0.2);
}

.step-number {
    font-family: var(--font-heading);
    font-size: 72px;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.step-content h3 {
    font-size: 24px;
    margin-bottom: 16px;
}

.step-content p {
    margin-bottom: 16px;
    color: #444;
}

@media (min-width: 768px) {
    .program-step-row {
        grid-template-columns: 150px 1fr;
    }
}

@media (min-width: 1024px) {
    .numbered-program-steps {
        padding: 80px 24px;
    }
}

/* Program Stats Block */
.program-stats {
    background-color: var(--color-secondary);
    color: var(--text-light);
    padding: 64px 16px;
}

.stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 64px;
    font-weight: 700;
    color: var(--color-accent);
    display: block;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Parallax Integration */
.program-visual-break {
    position: relative;
    height: 350px;
    overflow: hidden;
}

.parallax-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.parallax-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.parallax-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(52, 73, 94, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.overlay-text {
    max-width: 800px;
    text-align: center;
}

.overlay-text h3 {
    color: var(--text-light);
    font-family: var(--font-heading);
    font-size: clamp(20px, 3vw, 32px);
    font-style: italic;
}

.program-faq {
    padding: 48px 16px;
    background-color: var(--text-light);
}

.program-cta {
    padding: 48px 16px;
}

.cta-box-simple {
    background-color: var(--text-light);
    border: 3px solid var(--color-primary);
    padding: 48px 24px;
    text-align: center;
}

.cta-box-simple h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-box-simple p {
    margin-bottom: 32px;
}

@media (min-width: 1024px) {
    .program-cta {
        padding: 80px 24px;
    }
    .cta-box-simple {
        padding: 64px;
    }
}

/* MISSION PAGE STYLES */
.mission-hero {
    padding: 64px 16px;
    background-color: var(--text-light);
    text-align: center;
    border-bottom: 2px solid var(--color-primary);
}

.mission-split-section {
    padding: 48px 16px;
}

.split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: 0 24px 64px rgba(52, 73, 94, 0.22);
}

.split-text-col h2 {
    font-size: clamp(28px, 4vw, 40px);
    margin-bottom: 24px;
}

.split-text-col p {
    margin-bottom: 16px;
    color: #444;
}

.values-list {
    margin-top: 32px;
}

.value-item {
    margin-bottom: 24px;
    padding-left: 16px;
    border-left: 4px solid var(--color-primary);
}

.value-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

@media (min-width: 768px) {
    .split-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

@media (min-width: 1024px) {
    .mission-split-section {
        padding: 80px 24px;
    }
    .split-grid {
        gap: 64px;
    }
}

.manifesto-section {
    padding: 48px 16px;
    background-color: var(--text-light);
}

.manifesto-card {
    max-width: 900px;
    margin: 0 auto;
    border: 2px solid var(--color-secondary);
    padding: 48px 24px;
    background-color: var(--bg-tint);
}

.manifesto-card h2 {
    font-size: 32px;
    margin-bottom: 20px;
    text-align: center;
}

.manifesto-card p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #444;
}

@media (min-width: 1024px) {
    .manifesto-section {
        padding: 80px 24px;
    }
    .manifesto-card {
        padding: 64px;
    }
}

/* CONTACT PAGE STYLES */
.contact-section-layout {
    padding: 48px 16px;
}

.contact-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.contact-header h1 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 16px;
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}

.contact-info-card {
    background-color: var(--color-secondary);
    color: var(--text-light);
    padding: 32px;
    height: 100%;
}

.contact-info-card h3 {
    color: var(--text-light);
    font-size: 24px;
    margin-bottom: 16px;
}

.contact-desc {
    margin-bottom: 32px;
    color: rgba(255,255,255,0.8);
}

.info-list .info-item {
    margin-bottom: 24px;
}

.info-list .info-item strong {
    display: block;
    color: var(--color-accent);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.info-list .info-item a {
    color: var(--text-light);
    text-decoration: underline;
}

/* Contact Form (4 Fields) */
.styled-contact-form {
    background-color: var(--text-light);
    padding: 32px;
    box-shadow: 0 24px 64px rgba(52, 73, 94, 0.15);
    border: 1px solid rgba(52,73,94,0.1);
}

.styled-contact-form h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.styled-contact-form p {
    margin-bottom: 24px;
    color: #666;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-secondary);
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(52, 73, 94, 0.3);
    font-family: var(--font-body);
    font-size: 15px;
    border-radius: 0 !important; /* Sharp */
    outline: none;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
}

.form-submit-btn {
    width: 100%;
    text-align: center;
}

@media (min-width: 768px) {
    .contact-grid-layout {
        grid-template-columns: 1fr 1.2fr;
    }
}

@media (min-width: 1024px) {
    .contact-section-layout {
        padding: 80px 24px;
    }
    .contact-grid-layout {
        gap: 48px;
    }
}

/* LEGAL PAGES */
.legal-page-content {
    padding: 64px 16px;
}

.legal-page-content h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 8px;
}

.last-updated {
    font-size: 14px;
    color: #666;
    margin-bottom: 40px;
}

.legal-section {
    margin-bottom: 32px;
    background-color: var(--text-light);
    padding: 32px;
    border: 1px solid rgba(52,73,94,0.1);
}

.legal-section h2 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--color-primary);
}

.legal-section p {
    margin-bottom: 16px;
    color: #444;
}

.legal-section ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-section li {
    margin-bottom: 8px;
}

.disclaimer-box {
    border-left: 4px solid var(--color-primary);
    background-color: #FFF0F5;
}

/* THANK YOU PAGE */
.thank-you-page {
    padding: 64px 16px;
}

.thank-card {
    background-color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
    padding: 48px 24px;
    border: 2px solid var(--color-primary);
    box-shadow: 0 24px 64px rgba(52, 73, 94, 0.15);
}

.success-icon {
    font-size: 48px;
    color: var(--color-primary);
    display: block;
    margin-bottom: 16px;
}

.thank-lead {
    font-size: 18px;
    margin-bottom: 32px;
    color: #444;
}

.next-steps-box {
    text-align: left;
    background-color: var(--bg-tint);
    padding: 24px;
    margin-bottom: 32px;
    border-left: 3px solid var(--color-secondary);
}

.next-steps-box h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.next-steps-box ul {
    list-style: none;
}

.next-steps-box li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 20px;
}

.next-steps-box li::before {
    content: "•";
    color: var(--color-primary);
    font-weight: bold;
    position: absolute;
    left: 0;
}

.thank-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
    justify-content: center;
}

@media (min-width: 600px) {
    .thank-actions {
        flex-direction: row;
    }
}

/* Footer Layout (Preventing translator styling issues) */
.site-footer {
    background-color: #34495E !important; /* Hardcoded for safety */
    color: #FFFFFF !important; /* Hardcoded for safety */
    padding: 64px 16px 24px 16px;
    border-top: 4px solid #9C1C66 !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-brand .logo {
    color: #F1A9B8 !important;
    margin-bottom: 16px;
    display: inline-block;
}

.footer-desc {
    color: rgba(255,255,255,0.8) !important;
    font-size: 14px;
}

.footer-grid h4 {
    color: #FFFFFF !important;
    font-size: 18px;
    margin-bottom: 20px;
    font-family: var(--font-body);
    font-weight: 700;
}

.footer-links ul,
.footer-legal ul {
    list-style: none;
}

.footer-links li,
.footer-legal li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-legal a {
    color: rgba(255,255,255,0.8) !important;
    font-size: 15px;
}

.footer-links a:hover,
.footer-legal a:hover {
    color: #F1A9B8 !important;
    text-decoration: underline;
}

.footer-contact p {
    color: rgba(255,255,255,0.8) !important;
    font-size: 15px;
    margin-bottom: 12px;
}

.footer-email-link {
    color: #F1A9B8 !important;
    text-decoration: underline !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1) !important;
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6) !important;
    font-size: 13px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 0.8fr 0.8fr 1.2fr;
    }
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed; 
    bottom: 0; 
    left: 0; 
    right: 0; 
    z-index: 9999;
    padding: 18px 24px;
    background-color: var(--color-secondary);
    color: var(--text-light);
    display: flex; 
    align-items: center; 
    justify-content: space-between;
    flex-wrap: wrap; 
    gap: 16px;
    transform: translateY(0); 
    transition: transform 0.4s ease;
    border-top: 3px solid var(--color-primary);
}

#cookie-banner.hidden { 
    transform: translateY(110%); 
}

#cookie-banner p { 
    margin: 0; 
    flex: 1; 
    min-width: 200px; 
    font-size: 14px;
}

#cookie-banner a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-btns { 
    display: flex; 
    gap: 10px; 
    flex-shrink: 0; 
    flex-wrap: wrap; 
}

.cookie-btn-accept {
    background-color: var(--color-primary);
    color: var(--text-light);
    border: none;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.5);
    padding: 10px 20px;
    font-size: 14px;
    cursor: pointer;
}

@media (max-width: 600px) {
    #cookie-banner { 
        flex-direction: column; 
        align-items: flex-start; 
    }
    .cookie-btns { 
        width: 100%; 
    }
    .cookie-btn-accept, 
    .cookie-btn-decline { 
        flex: 1; 
        text-align: center; 
    }
}