/* Warm Vintage Palette: Terracotta, Warm Copper, Gold/Amber, Warm Cream, Charcoal Dark Brown */
/* No Blue and No Green allowed as dominant colors */
:root {
    --primary-color: #8C3026;       /* Terracotta / Burgundy */
    --secondary-color: #D97E52;     /* Warm Copper / Orange */
    --accent-color: #E3A857;        /* Vintage Gold */
    --bg-light: #FDFBF7;            /* Warm Cream */
    --bg-dark: #2B221E;             /* Charcoal Dark Brown */
    --text-dark: #3D3531;           /* Soft Dark Brown for text readability */
    --text-light: #FDFBF7;
    --border-color: #E6DFD5;
    
    --font-heading: 'Merriweather', serif;
    --font-body: 'Montserrat', sans-serif;
    
    --border-radius-card: 14px;
    --border-radius-btn: 8px;
    
    --shadow-subtle: 0 4px 14px rgba(43, 34, 30, 0.06);
    --vintage-overlay: repeating-linear-gradient(
        0deg,
        rgba(140, 48, 38, 0.01) 0px,
        rgba(140, 48, 38, 0.01) 1px,
        transparent 1px,
        transparent 2px
    );
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    background-image: var(--vintage-overlay);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--primary-color);
    margin-bottom: 16px;
    font-weight: 700;
}

p {
    margin-bottom: 16px;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-narrow {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-dark);
    border-bottom: 2px solid var(--accent-color);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo - always left */
.logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color) !important;
    z-index: 100;
}

/* Hamburger - ALWAYS RIGHT */
.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none; /* Desktop hidden */
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--accent-color);
    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(--text-light);
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.desktop-nav .nav-list a:hover {
    color: var(--accent-color);
}

/* 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(--bg-dark);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(253, 251, 247, 0.1);
}

.mobile-nav a {
    color: var(--text-light);
    font-size: 16px;
    display: block;
}

/* Mobile responsive header */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block; /* Show hamburger on mobile */
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    /* Hamburger animation */
    #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);
    }
}

/* Buttons */
.btn-primary {
    display: inline-block;
    padding: 14px 28px;
    background-color: var(--primary-color);
    color: var(--text-light) !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border: none;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.2s ease, background-color 0.3s ease;
}

.btn-primary:hover {
    background-color: #6B231B;
    transform: translateY(-1px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    background-color: transparent;
    color: var(--primary-color) !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 15px;
    border: 2px solid var(--primary-color);
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-light) !important;
}

/* Vintage Badge */
.vintage-badge {
    display: inline-block;
    padding: 6px 14px;
    background-color: rgba(227, 168, 87, 0.15);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    border: 1px solid var(--accent-color);
    border-radius: 50px;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Hero Section: Vertical-Stack */
.hero-vertical {
    display: flex;
    flex-direction: column;
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-bottom: 4px solid var(--accent-color);
}

.hero-image-wrapper {
    height: 55vh;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(20%) contrast(105%) brightness(90%);
}

.hero-content-wrapper {
    padding: 48px 16px;
    background-color: var(--bg-dark);
    text-align: center;
}

.hero-content-wrapper .hero-title {
    color: var(--accent-color);
    font-size: clamp(28px, 5vw, 46px);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content-wrapper .hero-subtitle {
    color: #ECE5DE;
    font-size: clamp(15px, 2vw, 18px);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* Section Common Headers */
.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 48px auto;
}

.section-title {
    font-size: clamp(24px, 4vw, 36px);
    line-height: 1.3;
}

.section-desc {
    font-size: clamp(15px, 2vw, 17px);
    color: #615651;
}

/* Benefits Section: 2x2 grid */
.benefits-section-vintage {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.benefits-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.benefit-card {
    background-color: #FAF6F0;
    padding: 32px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s ease;
}

.benefit-card:hover {
    transform: translateY(-4px);
    border-color: var(--accent-color);
}

.benefit-icon {
    font-size: 36px;
    margin-bottom: 16px;
}

.benefit-card-title {
    font-size: 20px;
    margin-bottom: 12px;
}

.benefit-card-text {
    font-size: 15px;
    color: var(--text-dark);
}

/* Comparison Table */
.comparison-section {
    padding: 80px 0;
    background-color: #FAF6F0;
    border-bottom: 1px solid var(--border-color);
}

.table-responsive {
    overflow-x: auto;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background-color: var(--bg-light);
    text-align: left;
    min-width: 600px;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: var(--text-light);
    font-family: var(--font-heading);
    padding: 18px;
    font-weight: 600;
}

.comparison-table td {
    padding: 16px 18px;
    border-bottom: 1px solid var(--border-color);
    font-size: 15px;
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.comparison-table tr:nth-child(even) {
    background-color: #FAF6F0;
}

/* Icon Features Section */
.features-icon-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.features-icon-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.feature-icon-box {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.feature-emoji {
    font-size: 32px;
    margin-bottom: 12px;
}

.feature-box-title {
    font-size: 18px;
    margin-bottom: 8px;
}

.feature-box-text {
    font-size: 14px;
    color: #615651;
}

/* Gallery Section */
.gallery-section {
    padding: 80px 0;
    background-color: #FAF6F0;
    border-bottom: 1px solid var(--border-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    height: 250px;
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(15%);
    transition: transform 0.5s ease;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(43, 34, 30, 0.85);
    color: var(--text-light);
    padding: 12px 16px;
    font-family: var(--font-heading);
    font-size: 14px;
}

.placeholder-item {
    background-color: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 24px;
}

.placeholder-content {
    color: var(--primary-color);
}

.placeholder-icon {
    font-size: 48px;
    display: block;
    margin-bottom: 12px;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.testimonials-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--bg-light);
    padding: 24px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
}

.testimonial-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.avatar-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--primary-color);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 16px;
    box-shadow: var(--shadow-subtle);
}

.testimonial-author {
    font-size: 16px;
    margin-bottom: 2px;
}

.star-rating {
    color: var(--accent-color);
    font-size: 14px;
}

.testimonial-text {
    font-style: italic;
    color: #554C48;
    font-size: 15px;
}

/* Program Page Accordion */
.accordion-program-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.accordion-container {
    max-width: 800px;
    margin: 0 auto;
}

.vintage-accordion {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-card);
    margin-bottom: 16px;
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
}

.vintage-accordion[open] {
    border-color: var(--accent-color);
}

.accordion-header {
    padding: 20px;
    cursor: pointer;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 17px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 16px;
}

.accordion-header::-webkit-details-marker {
    display: none;
}

.accordion-number {
    color: var(--accent-color);
    font-size: 20px;
}

.accordion-content {
    padding: 0 20px 20px 56px;
    font-size: 15px;
    color: var(--text-dark);
}

/* Embedded Image Section Program Page */
.embedded-image-section {
    padding: 80px 0;
    background-color: #FAF6F0;
    border-bottom: 1px solid var(--border-color);
}

.image-text-split {
    display: flex;
    flex-direction: column;
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
}

.split-img-box {
    height: 300px;
    width: 100%;
}

.split-embedded-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(15%);
}

.split-text-box {
    padding: 32px;
}

.split-box-title {
    font-size: 22px;
    margin-bottom: 16px;
}

/* CTA Banner Section */
.cta-banner-section {
    padding: 80px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    border-bottom: 4px solid var(--accent-color);
}

.cta-banner-section .cta-title {
    color: var(--accent-color);
    font-size: clamp(24px, 4vw, 36px);
}

.cta-banner-section .cta-text {
    max-width: 600px;
    margin: 0 auto 24px auto;
    color: #ECE5DE;
}

/* Mission Page Split Layout */
.mission-split-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.mission-split-container {
    display: flex;
    flex-direction: column;
    max-width: 1100px;
    margin: 0 auto;
}

.mission-split-image {
    width: 100%;
    height: 300px;
    border-radius: var(--border-radius-card);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    margin-bottom: 32px;
}

.mission-img-el {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: sepia(15%);
}

.mission-split-content {
    padding: 0 16px;
}

.mission-side-title {
    font-size: 28px;
    margin-bottom: 20px;
}

.values-subtitle {
    font-size: 22px;
    margin: 32px 0 16px 0;
}

.values-list-vintage {
    list-style: none;
    padding: 0;
}

.values-list-vintage li {
    padding-left: 24px;
    position: relative;
    margin-bottom: 16px;
    font-size: 15px;
}

.values-list-vintage li::before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 16px;
}

/* Timeline Vintage */
.history-timeline-section {
    padding: 80px 0;
    background-color: #FAF6F0;
    border-bottom: 1px solid var(--border-color);
}

.timeline-vintage {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 24px;
}

.timeline-vintage::before {
    content: "";
    position: absolute;
    left: 7px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: var(--accent-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-date {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
    position: relative;
}

.timeline-date::before {
    content: "";
    position: absolute;
    left: -22px;
    top: 8px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 2px solid var(--accent-color);
}

.timeline-body {
    background-color: var(--bg-light);
    padding: 20px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
}

.timeline-item-title {
    font-size: 17px;
    margin-bottom: 8px;
}

/* Contact Page Layout */
.contact-split-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.contact-grid-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

.contact-side-title {
    font-size: 24px;
    margin-bottom: 12px;
}

.contact-side-desc {
    font-size: 15px;
    color: #615651;
    margin-bottom: 24px;
}

/* Forms styling */
.vintage-form {
    background-color: #FAF6F0;
    padding: 32px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-btn);
    background-color: var(--bg-light);
    font-family: var(--font-body);
    font-size: 15px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.form-submit-btn {
    width: 100%;
}

/* Contact Info Side */
.info-card-vintage {
    background-color: #FAF6F0;
    padding: 24px;
    border-radius: var(--border-radius-card);
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    margin-bottom: 24px;
}

.info-item-row {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.info-item-row:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 24px;
}

.info-text-block strong {
    font-family: var(--font-heading);
    font-size: 15px;
    color: var(--primary-color);
}

.info-text-block p {
    font-size: 14px;
    margin-top: 4px;
    margin-bottom: 0;
}

.contact-link-el {
    color: var(--text-dark);
}

.contact-link-el:hover {
    color: var(--secondary-color);
}

.contact-educational-disclaimer {
    border-left: 4px solid var(--accent-color);
    padding-left: 16px;
    font-style: italic;
    font-size: 13px;
    color: #615651;
}

/* Internal Pages Hero */
.internal-hero-section {
    padding: 60px 0;
    background-color: var(--bg-dark);
    color: var(--text-light);
    text-align: center;
    border-bottom: 4px solid var(--accent-color);
}

.internal-title {
    color: var(--accent-color);
    font-size: clamp(24px, 4vw, 38px);
}

.internal-subtitle {
    max-width: 800px;
    margin: 0 auto;
    color: #ECE5DE;
    font-size: 16px;
}

/* Policy Pages styling */
.policy-page-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.policy-title {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 8px;
}

.policy-date {
    font-style: italic;
    color: #615651;
    margin-bottom: 32px;
}

.policy-content h3 {
    font-size: 18px;
    margin-top: 32px;
    margin-bottom: 12px;
}

.policy-content ul {
    margin-bottom: 16px;
    padding-left: 20px;
}

.policy-content li {
    margin-bottom: 8px;
    font-size: 15px;
}

/* Thank You Page */
.thank-you-section {
    padding: 80px 0;
    border-bottom: 1px solid var(--border-color);
}

.thank-title {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 16px;
}

.thank-subtitle {
    font-size: 16px;
    margin-bottom: 40px;
}

.next-steps-card {
    background-color: #FAF6F0;
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-card);
    padding: 32px;
    margin-bottom: 40px;
    text-align: left;
}

.next-steps-card h3 {
    font-size: 18px;
    margin-bottom: 16px;
}

.thank-links-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 20px;
}

.thank-link-card {
    background-color: var(--bg-light);
    border: 1px solid var(--border-color);
    border-radius: var(--border-radius-card);
    padding: 20px;
    display: block;
    color: var(--text-dark) !important;
}

.thank-link-card strong {
    display: block;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.thank-link-card span {
    font-size: 13px;
}

.thank-link-card:hover {
    border-color: var(--accent-color);
}

.back-home-btn {
    padding: 16px 40px;
}

/* Footer Styling */
.site-footer {
    background-color: var(--bg-dark) !important;
    color: var(--text-light) !important;
    padding: 60px 0 20px 0;
    border-top: 4px solid var(--accent-color);
}

.site-footer a {
    color: #ECE5DE !important;
}

.site-footer a:hover {
    color: var(--accent-color) !important;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-brand {
    padding-right: 0;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    color: var(--accent-color) !important;
    display: block;
    margin-bottom: 16px;
}

.footer-about {
    font-size: 14px;
    color: #ECE5DE !important;
}

.footer-title {
    font-family: var(--font-heading);
    font-size: 17px;
    color: var(--accent-color) !important;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-links ul,
.footer-policies ul {
    list-style: none;
    padding: 0;
}

.footer-links li,
.footer-policies li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-policies a {
    font-size: 14px;
}

.footer-contact p {
    font-size: 14px;
    margin-bottom: 12px;
    color: #ECE5DE !important;
}

.footer-phone-link,
.footer-email-link {
    font-weight: 600;
}

.footer-bottom {
    max-width: 1200px;
    margin: 40px auto 0 auto;
    padding: 20px 20px 0 20px;
    border-top: 1px solid rgba(253, 251, 247, 0.1);
    text-align: center;
    font-size: 12px;
    color: #ECE5DE !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(--bg-dark);
    color: var(--text-light);
    border-top: 3px solid var(--accent-color);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 13px;
    color: #ECE5DE;
}

#cookie-banner a {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--accent-color);
    color: var(--bg-dark);
    border: none;
    padding: 8px 20px;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid rgba(253, 251, 247, 0.3);
    padding: 8px 20px;
    border-radius: var(--border-radius-btn);
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
}

@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;
    }
}

/* Text alignment helper as pure custom css class */
.text-center {
    text-align: center;
}

/* Mobile-First Responsive Media Queries */
@media (min-width: 768px) {
    /* Grid adjustments */
    .benefits-grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-icon-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-grid-layout {
        grid-template-columns: 1.2fr 0.8fr;
    }
    
    .thank-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* Hero layout */
    .hero-vertical {
        flex-direction: row;
        height: 65vh;
        align-items: stretch;
    }
    
    .hero-image-wrapper {
        height: auto;
        width: 50%;
    }
    
    .hero-content-wrapper {
        width: 50%;
        display: flex;
        align-items: center;
        text-align: left;
        padding: 40px;
    }
    
    .hero-content-wrapper .hero-subtitle {
        margin-left: 0;
    }
    
    .hero-actions {
        justify-content: flex-start;
    }
    
    /* Embedded split */
    .image-text-split {
        flex-direction: row;
    }
    
    .split-img-box {
        width: 40%;
        height: auto;
    }
    
    .split-text-box {
        width: 60%;
        padding: 48px;
    }
    
    /* Mission split */
    .mission-split-container {
        flex-direction: row;
        gap: 48px;
    }
    
    .mission-split-image {
        width: 45%;
        height: auto;
        min-height: 500px;
        margin-bottom: 0;
    }
    
    .mission-split-content {
        width: 55%;
        padding: 0;
    }
}

@media (min-width: 1024px) {
    /* Footer columns adjustment */
    .footer-container {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
    
    .features-icon-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}