/* 
Color Palette: pine-copper
--color-primary: #1A3325 (deep forest green)
--color-secondary: #253F30 (dark moss green)
--color-accent: #A06830 (burnt copper)
--bg-tint: #F0F8F2 (very light sage tint)
Style: soft-organic with SHARP borders and DRAMATIC shadows.
*/

:root {
    --color-primary: #1A3325;
    --color-secondary: #253F30;
    --color-accent: #A06830;
    --bg-tint: #F0F8F2;
    --text-dark: #1F2E24;
    --text-light: #FFFFFF;
    --border-color: #E2ECE5;
    
    /* Font families */
    --font-heading: 'Georgia', serif;
    --font-body: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* 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;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    font-weight: 700;
}

a {
    color: var(--color-accent);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 0 !important; /* Sharp border style requirement */
}

/* Container */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

@media (min-width: 768px) {
    .container {
        padding: 0 24px;
    }
}

/* Section Spacing */
.section {
    padding: 48px 16px;
}

@media (min-width: 768px) {
    .section {
        padding: 80px 24px;
    }
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 42px);
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 12px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
}

.badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--text-light);
    padding: 6px 16px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    font-weight: bold;
    border-radius: 0 !important; /* Sharp requirement */
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0 !important; /* Sharp requirement */
    border: none;
    text-align: center;
    min-height: 48px;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--text-light);
    box-shadow: 0 8px 24px rgba(26, 51, 37, 0.2);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
}

.btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-secondary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo */
.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-light) !important;
    z-index: 100;
}

/* Hamburger */
.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    margin: 5px 0;
    transition: 0.3s;
    background-color: var(--text-light);
}

.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(--text-light);
    font-weight: 500;
}

.desktop-nav .nav-list a:hover {
    color: var(--color-accent);
}

/* 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 a {
    color: var(--text-light);
    font-size: 18px;
    display: block;
}

/* Mobile Adaptation */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    #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);
    }
}

/* HERO SECTION: FLOATING CARD LAYOUT */
.hero-section {
    position: relative;
    background-image: url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 60px 16px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(37, 63, 48, 0.4);
}

.hero-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: center;
}

.floating-card {
    background-color: #FFFFFF;
    padding: 32px 24px;
    max-width: 600px;
    border-radius: 0 !important; /* Sharp requirement */
    box-shadow: 0 24px 64px rgba(0,0,0,0.22); /* Dramatic shadow */
}

@media (min-width: 768px) {
    .floating-card {
        padding: 48px;
    }
}

.floating-card h1 {
    font-size: clamp(32px, 5vw, 52px);
    line-height: 1.15;
    margin-bottom: 20px;
}

.floating-card p {
    font-size: clamp(16px, 2vw, 18px);
    color: #4A5D50;
    margin-bottom: 32px;
}

.hero-actions {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

@media (min-width: 480px) {
    .hero-actions {
        flex-direction: row;
    }
}

/* BENEFITS 5 ASYMMETRIC CARDS */
.benefits-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .benefits-grid {
        grid-template-columns: repeat(6, 1fr);
    }
    
    .benefit-card:nth-child(1) {
        grid-column: span 3;
    }
    .benefit-card:nth-child(2) {
        grid-column: span 3;
    }
    .benefit-card:nth-child(3) {
        grid-column: span 2;
    }
    .benefit-card:nth-child(4) {
        grid-column: span 2;
    }
    .benefit-card:nth-child(5) {
        grid-column: span 2;
    }
}

.benefit-card {
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 0 !important; /* Sharp */
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 4px solid var(--color-primary);
}

.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 32px 80px rgba(0,0,0,0.22); /* Dramatic hover shadow */
}

.benefit-card.featured-card {
    background-color: var(--color-primary);
    color: var(--text-light);
    border-top: none;
}

.benefit-card.featured-card h3,
.benefit-card.featured-card .card-number {
    color: var(--text-light);
}

.card-number {
    font-size: 40px;
    font-family: var(--font-heading);
    color: var(--color-accent);
    font-weight: bold;
    display: block;
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
}

/* CHECKLIST BLOCK */
.checklist-section {
    background-color: #FFFFFF;
}

.checklist-wrapper {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .checklist-wrapper {
        grid-template-columns: 1fr 2fr;
    }
}

.checklist-intro h2 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 20px;
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.checklist-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.check-icon {
    font-size: 20px;
    color: var(--text-light);
    background-color: var(--color-accent);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-weight: bold;
    border-radius: 0 !important; /* Sharp */
}

.checklist-item h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

/* ICON FEATURES */
.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-item {
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 0 !important; /* Sharp */
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
}

.feature-emoji {
    font-size: 40px;
    display: block;
    margin-bottom: 20px;
}

.feature-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

/* GALLERY GRID */
.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    height: 300px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(26, 51, 37, 0.95));
    color: var(--text-light);
    padding: 20px;
    font-size: 14px;
}

.placeholder-item {
    background-color: var(--color-primary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 32px;
}

.placeholder-content span {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: bold;
    display: block;
    margin-bottom: 12px;
    color: var(--color-accent);
}

/* TWO COLUMNS (IMAGE / TEXT) */
.twocol-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: center;
}

@media (min-width: 1024px) {
    .twocol-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.twocol-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

.twocol-content h2 {
    font-size: clamp(28px, 4vw, 38px);
    margin-bottom: 20px;
}

.twocol-content p {
    margin-bottom: 24px;
}

.styled-list {
    list-style: none;
    margin-bottom: 32px;
}

.styled-list li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 16px;
}

.styled-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent);
    font-weight: bold;
}

/* INTERNAL HERO */
.internal-hero {
    background-color: var(--color-secondary);
    color: var(--text-light);
    padding: 60px 16px;
    text-align: center;
}

@media (min-width: 768px) {
    .internal-hero {
        padding: 100px 24px;
    }
}

.internal-hero h1 {
    font-size: clamp(32px, 5vw, 56px);
    color: var(--text-light);
    margin-bottom: 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.internal-hero p {
    font-size: clamp(16px, 2vw, 20px);
    color: #A3C2B0;
    max-width: 600px;
    margin: 0 auto;
}

/* PROGRAM PAGE: GRID 6 CARDS */
.modules-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .modules-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .modules-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.module-card {
    background-color: #FFFFFF;
    padding: 32px;
    border-radius: 0 !important; /* Sharp */
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
    border-left: 4px solid var(--color-accent);
}

.module-icon {
    font-size: 36px;
    display: block;
    margin-bottom: 16px;
}

.module-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
}

/* ACCORDION (FAQ) */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: #FFFFFF;
    margin-bottom: 16px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.05);
}

.faq-item summary {
    padding: 24px;
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: bold;
    color: var(--color-primary);
    cursor: pointer;
    list-style: none;
    position: relative;
    padding-right: 48px;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 24px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 24px;
    color: var(--color-accent);
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-item p {
    padding: 0 24px 24px 24px;
    border-top: 1px solid var(--border-color);
}

/* MISSION PAGE: STORY-TEAM */
.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
    align-items: flex-start;
}

@media (min-width: 1024px) {
    .story-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.story-content h2 {
    font-size: 32px;
    margin-bottom: 24px;
}

.story-content p {
    margin-bottom: 20px;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    box-shadow: 0 24px 64px rgba(0,0,0,0.15);
}

.image-caption {
    font-size: 14px;
    color: #555;
    margin-top: 12px;
    font-style: italic;
}

/* VALUES */
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background-color: #FFFFFF;
    padding: 32px;
    text-align: center;
    border-radius: 0 !important; /* Sharp */
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

.value-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}

/* MANIFESTO */
.manifesto-box {
    background-color: var(--color-primary);
    color: var(--text-light);
    padding: 48px;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

.manifesto-box h2 {
    color: var(--text-light);
    margin-bottom: 24px;
}

.manifesto-box p {
    font-size: 20px;
    font-family: var(--font-heading);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
}

.manifesto-author {
    font-size: 14px !important;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-accent) !important;
}

/* CONTACT PAGE: SPLIT LAYOUT */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1.2fr 0.8fr;
    }
}

.contact-form-block {
    background-color: #FFFFFF;
    padding: 32px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
}

@media (min-width: 768px) {
    .contact-form-block {
        padding: 48px;
    }
}

.contact-form-block h2 {
    font-size: 28px;
    margin-bottom: 12px;
}

.contact-form-block p {
    margin-bottom: 32px;
    color: #555;
}

.styled-form {
    max-width: 800px;
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    background-color: var(--bg-tint);
    font-family: var(--font-body);
    font-size: 16px;
    border-radius: 0 !important; /* Sharp */
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

.info-card {
    background-color: #FFFFFF;
    padding: 32px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
    margin-bottom: 24px;
}

.info-card h3 {
    font-size: 22px;
    margin-bottom: 20px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
}

.info-icon {
    font-size: 24px;
}

.info-item h4 {
    font-size: 16px;
    margin-bottom: 4px;
}

.schedule-card {
    border-left: 4px solid var(--color-accent);
}

.schedule-list {
    list-style: none;
    margin-top: 16px;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border-color);
}

/* LEGAL PAGES */
.policy-content {
    background-color: #FFFFFF;
    padding: 32px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.1);
    max-width: 900px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .policy-content {
        padding: 48px;
    }
}

.policy-content h2 {
    font-size: 24px;
    margin: 32px 0 16px 0;
}

.policy-content h2:first-of-type {
    margin-top: 0;
}

.policy-content p {
    margin-bottom: 16px;
}

.policy-content ul {
    margin-bottom: 24px;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 8px;
}

/* THANK PAGE */
.thank-section {
    padding: 80px 16px;
    text-align: center;
}

.thank-box {
    background-color: #FFFFFF;
    padding: 48px;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

.thank-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 24px;
}

.thank-box h1 {
    font-size: 32px;
    margin-bottom: 16px;
}

.thank-box p {
    margin-bottom: 32px;
}

.next-steps {
    background-color: var(--bg-tint);
    padding: 24px;
    text-align: left;
    margin-bottom: 32px;
}

.next-steps h3 {
    margin-bottom: 16px;
}

.steps-list {
    list-style: none;
}

.steps-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 12px;
}

.steps-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--color-accent);
}

.thank-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* CTA BOX */
.cta-box {
    background-color: var(--color-secondary);
    color: var(--text-light);
    padding: 48px;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}

.cta-box h2 {
    color: var(--text-light);
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-box p {
    max-width: 600px;
    margin: 0 auto 32px auto;
}

/* FOOTER */
.site-footer {
    background-color: var(--color-secondary) !important; /* Safety override */
    color: var(--text-light) !important; /* Safety override */
    padding: 60px 16px 20px 16px;
    font-size: 14px;
}

.site-footer h4 {
    color: var(--color-accent) !important; /* Safety override */
    font-size: 18px;
    margin-bottom: 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}

.footer-brand p {
    margin-top: 16px;
    line-height: 1.8;
}

.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: var(--text-light) !important; /* Safety override */
}

.footer-links a:hover,
.footer-legal a:hover {
    color: var(--color-accent) !important;
}

.footer-contact p {
    margin-bottom: 12px;
}

.footer-contact a {
    color: var(--text-light) !important;
}

.footer-contact a:hover {
    color: var(--color-accent) !important;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.6) !important;
}

/* COOKIE BANNER */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    transform: translateY(0);
    transition: transform 0.4s ease;
    background-color: var(--color-secondary);
    color: var(--text-light);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.3);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
}

#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,
.cookie-btn-decline {
    padding: 10px 20px;
    cursor: pointer;
    border: none;
    font-weight: bold;
    border-radius: 0 !important; /* Sharp */
    transition: background-color 0.3s;
}

.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--text-light);
}

.cookie-btn-accept:hover {
    background-color: #B2793E;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(255,255,255,0.3);
}

.cookie-btn-decline:hover {
    background-color: rgba(255,255,255,0.1);
}

@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;
    }
}