/* Design Palette: golden-rose */
/* Theme Variables */
:root {
    --color-primary: #8C7000;
    --color-secondary: #B09000;
    --color-accent: #C2185B;
    --bg-tint: #FFFBE0;
    --text-dark: #2B2500;
    --text-light: #FFFBE0;
    --white: #FFFFFF;
    --gray-light: #F7F5E6;
    --border-radius-pill: 50px;
    --border-radius-organic: 36px;
    --border-radius-circle: 50%;
    --shadow-subtle: 0 2px 12px rgba(140, 112, 0, 0.07);
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Base Reset & Typography */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: var(--transition-smooth);
}

a:hover {
    color: var(--color-accent);
}

/* Layout Containers */
.section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 48px 16px;
}

.section-container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 48px 16px;
}

@media (min-width: 1024px) {
    .section-container {
        padding: 80px 24px;
    }
    .section-container-narrow {
        padding: 80px 24px;
    }
}

/* Section Header Styles */
.section-header-center {
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-title {
    font-size: clamp(24px, 5vw, 36px);
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.section-subtitle {
    font-size: clamp(14px, 3vw, 18px);
    color: var(--text-dark);
    opacity: 0.8;
}

.section-badge {
    display: inline-block;
    background-color: var(--bg-tint);
    color: var(--color-primary);
    padding: 8px 20px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 16px;
    border: 1px solid rgba(140, 112, 0, 0.15);
}

/* Button & Pill Styles */
.btn-primary-pill {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--text-light);
    padding: 14px 32px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
}

.btn-primary-pill:hover {
    background-color: var(--color-accent);
    color: var(--white);
    transform: translateY(-2px);
}

.btn-secondary-pill {
    display: inline-block;
    background-color: transparent;
    color: var(--color-primary);
    padding: 14px 32px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    text-align: center;
    border: 2px solid var(--color-primary);
    cursor: pointer;
}

.btn-secondary-pill:hover {
    background-color: var(--bg-tint);
    transform: translateY(-2px);
}

.btn-accent-pill {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--white);
    padding: 14px 32px;
    border-radius: var(--border-radius-pill);
    font-weight: 600;
    text-align: center;
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
}

.btn-accent-pill: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(--white);
    box-shadow: var(--shadow-subtle);
    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: 26px;
    font-weight: 800;
    color: var(--color-primary);
    z-index: 1100;
}

/* Hamburger Menu */
.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 1100;
    display: none;
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    margin: 5px 0;
    transition: var(--transition-smooth);
}

.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 {
    font-weight: 600;
    color: var(--text-dark);
}

.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: 999;
    background-color: var(--bg-tint);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(140, 112, 0, 0.1);
}

.mobile-nav a {
    font-weight: 600;
    color: var(--text-dark);
    display: block;
}

/* Mobile Header Adaptive */
@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 (Circle Image Layout) */
.hero-section-circle {
    background-color: var(--bg-tint);
    padding: 48px 16px;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.hero-text-content {
    text-align: left;
}

.hero-main-title {
    font-size: clamp(28px, 6vw, 48px);
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 18px;
    font-weight: 800;
}

.hero-description {
    font-size: clamp(15px, 3.5vw, 18px);
    margin-bottom: 24px;
    color: var(--text-dark);
    opacity: 0.9;
}

.hero-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.hero-visual-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.circle-image-wrapper {
    width: 280px;
    height: 280px;
    border-radius: var(--border-radius-circle);
    overflow: hidden;
    border: 8px solid var(--white);
    box-shadow: var(--shadow-subtle);
}

.hero-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .hero-container {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 48px;
    }
    .circle-image-wrapper {
        width: 380px;
        height: 380px;
    }
}

@media (min-width: 1024px) {
    .hero-section-circle {
        padding: 80px 24px;
    }
    .circle-image-wrapper {
        width: 450px;
        height: 450px;
    }
}

/* Benefits Section (2x2 Grid) */
.benefits-section {
    background-color: var(--white);
}

.benefits-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .benefits-grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

.benefit-card-organic {
    background-color: var(--bg-tint);
    padding: 32px;
    border-radius: var(--border-radius-organic);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(140, 112, 0, 0.08);
    transition: var(--transition-smooth);
}

.benefit-card-organic:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(140, 112, 0, 0.12);
}

.benefit-icon-wrapper {
    width: 60px;
    height: 60px;
    background-color: var(--color-primary);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.benefit-num {
    color: var(--text-light);
    font-weight: 700;
    font-size: 20px;
}

.benefit-card-title {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.benefit-card-text {
    font-size: 15px;
    color: var(--text-dark);
    opacity: 0.85;
}

/* Testimonials Section */
.testimonials-section {
    background-color: var(--gray-light);
}

.testimonials-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-item-pill {
    background-color: var(--white);
    padding: 24px;
    border-radius: var(--border-radius-organic);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(140, 112, 0, 0.05);
}

.testimonial-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.testimonial-avatar-placeholder {
    width: 48px;
    height: 48px;
    background-color: var(--color-accent);
    color: var(--white);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
}

.testimonial-name {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
}

.testimonial-role {
    font-size: 12px;
    color: var(--text-dark);
    opacity: 0.7;
}

.testimonial-stars {
    color: #FFB300;
    margin-bottom: 12px;
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    font-style: italic;
    color: var(--text-dark);
}

@media (min-width: 768px) {
    .testimonial-item-pill {
        padding: 32px 40px;
    }
}

/* Gallery Grid */
.gallery-section {
    background-color: var(--white);
}

.gallery-grid-3cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .gallery-grid-3cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-card {
    background-color: var(--bg-tint);
    border-radius: var(--border-radius-organic);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(140, 112, 0, 0.05);
}

.gallery-img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.gallery-caption {
    padding: 16px;
    text-align: center;
    font-weight: 600;
    font-size: 15px;
    color: var(--color-primary);
}

.gallery-card-placeholder {
    background-color: var(--bg-tint);
    border-radius: var(--border-radius-organic);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    border: 2px dashed rgba(140, 112, 0, 0.3);
    display: flex;
    flex-direction: column;
}

.placeholder-content {
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(140, 112, 0, 0.03);
    color: var(--color-accent);
    font-weight: 700;
    font-size: 18px;
}

/* Stats Bar */
.stats-bar-section {
    background-color: var(--gray-light);
    padding: 40px 16px;
}

.stats-container-pill {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--color-primary);
    padding: 32px;
    border-radius: var(--border-radius-pill);
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    text-align: center;
    box-shadow: var(--shadow-subtle);
}

@media (min-width: 768px) {
    .stats-container-pill {
        grid-template-columns: repeat(4, 1fr);
        padding: 24px 48px;
    }
}

.stat-box {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: clamp(28px, 5vw, 40px);
    font-weight: 800;
    color: var(--text-light);
    line-height: 1.1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 12px;
    color: var(--text-light);
    opacity: 0.9;
    font-weight: 600;
}

/* Quote Highlight */
.quote-section {
    background-color: var(--white);
}

.quote-card-organic {
    background-color: var(--bg-tint);
    padding: 40px;
    border-radius: var(--border-radius-organic);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(140, 112, 0, 0.1);
}

.quote-icon {
    font-size: 72px;
    color: var(--color-accent);
    line-height: 1;
    display: block;
    margin-bottom: -10px;
    font-family: Georgia, serif;
}

.quote-text {
    font-size: clamp(16px, 3.5vw, 22px);
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.5;
}

.quote-author {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (min-width: 768px) {
    .quote-card-organic {
        padding: 60px 80px;
    }
}

/* Program Intro Split Grid */
.program-intro-section {
    background-color: var(--bg-tint);
    padding: 48px 16px;
}

.split-intro-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.intro-text-block {
    text-align: left;
}

.page-title {
    font-size: clamp(28px, 6vw, 42px);
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 800;
    line-height: 1.2;
}

.lead-paragraph {
    font-size: 17px;
    color: var(--text-dark);
    opacity: 0.9;
}

.intro-image-block {
    border-radius: var(--border-radius-organic);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.intro-side-img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

@media (min-width: 768px) {
    .split-intro-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 48px;
    }
    .intro-side-img {
        height: 380px;
    }
}

/* Timeline 4 Modules */
.timeline-section {
    background-color: var(--white);
}

.vertical-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.vertical-timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: var(--bg-tint);
}

.timeline-item {
    position: relative;
    padding-left: 50px;
    margin-bottom: 40px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 44px;
    height: 44px;
    background-color: var(--color-accent);
    color: var(--white);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    box-shadow: var(--shadow-subtle);
}

.timeline-content-card {
    background-color: var(--gray-light);
    padding: 24px;
    border-radius: var(--border-radius-organic);
    box-shadow: var(--shadow-subtle);
    border-left: 5px solid var(--color-primary);
}

.module-title {
    font-size: clamp(16px, 4vw, 20px);
    color: var(--color-primary);
    margin-bottom: 10px;
    font-weight: 700;
}

.module-desc {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.85;
}

@media (min-width: 768px) {
    .vertical-timeline::before {
        left: 50%;
        transform: translateX(-50%);
    }
    .timeline-item {
        padding-left: 0;
        width: 50%;
        margin-bottom: 60px;
    }
    .timeline-item:nth-child(odd) {
        left: 0;
        padding-right: 40px;
        text-align: right;
    }
    .timeline-item:nth-child(even) {
        left: 50%;
        padding-left: 40px;
    }
    .timeline-badge {
        left: auto;
        right: -22px;
        top: 10px;
    }
    .timeline-item:nth-child(even) .timeline-badge {
        left: -22px;
        right: auto;
    }
    .timeline-item:nth-child(odd) .timeline-content-card {
        border-left: none;
        border-right: 5px solid var(--color-primary);
    }
}

/* FAQ Grid 2 Columns */
.program-faq-section {
    background-color: var(--gray-light);
}

.faq-grid-2cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .faq-grid-2cols {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }
}

.faq-card-organic {
    background-color: var(--white);
    padding: 28px;
    border-radius: var(--border-radius-organic);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(140, 112, 0, 0.05);
}

.faq-question {
    font-size: 16px;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.faq-answer {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.85;
}

/* CTA Banner (Pill Card) */
.cta-banner-section {
    background-color: var(--white);
        margin: 30px 16px;
}

.cta-container-pill {
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--bg-tint);
    padding: 48px 24px;
    border-radius: var(--border-radius-organic);
    text-align: center;
    box-shadow: var(--shadow-subtle);
    border: 2px solid var(--color-primary);
}

.cta-title {
    font-size: clamp(22px, 5vw, 32px);
    color: var(--color-primary);
    margin-bottom: 14px;
    font-weight: 800;
}

.cta-desc {
    font-size: 15px;
    color: var(--text-dark);
    max-width: 700px;
    margin: 0 auto 24px auto;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .cta-container-pill {
        padding: 64px 48px;
    }
}

/* Mission Hero Story */
.mission-hero-section {
    background-color: var(--white);
}

.mission-story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}

.story-image-side {
    border-radius: var(--border-radius-organic);
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
}

.story-cover-img {
    width: 100%;
    height: 320px;
    object-fit: cover;
}

.story-text-side {
    text-align: left;
}

.story-paragraph {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 16px;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .mission-story-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 48px;
    }
    .story-cover-img {
        height: 420px;
    }
}

/* Values Grid 3 Columns */
.values-section {
    background-color: var(--gray-light);
}

.values-grid-3cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .values-grid-3cols {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }
}

.value-card-organic {
    background-color: var(--white);
    padding: 32px;
    border-radius: var(--border-radius-organic);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(140, 112, 0, 0.05);
    text-align: center;
}

.value-icon-circle {
    width: 64px;
    height: 64px;
    background-color: var(--bg-tint);
    border-radius: var(--border-radius-circle);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 20px auto;
}

.value-title {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.value-text {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.85;
}

/* Manifesto Section */
.manifesto-section {
    background-color: var(--white);
}

.manifesto-card {
    background-color: var(--color-primary);
    color: var(--text-light);
    padding: 40px;
    border-radius: var(--border-radius-organic);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-subtle);
}

.manifesto-title {
    font-size: clamp(20px, 4vw, 28px);
    color: var(--text-light);
    margin-bottom: 18px;
    font-weight: 700;
}

.manifesto-text {
    font-size: clamp(15px, 3vw, 18px);
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 24px;
    opacity: 0.95;
}

.manifesto-signature {
    display: inline-block;
}

.sig-line {
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--color-accent);
    margin: 0 auto 8px auto;
}

.sig-name {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

@media (min-width: 768px) {
    .manifesto-card {
        padding: 60px 80px;
    }
}

/* Contact Layout Split */
.contact-layout-section {
    background-color: var(--white);
}

.contact-split-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 1024px) {
    .contact-split-grid {
        grid-template-columns: 1.2fr 0.8fr;
        gap: 60px;
    }
}

.contact-intro-text {
    font-size: 15px;
    color: var(--text-dark);
    margin-bottom: 24px;
    opacity: 0.9;
}

/* Form Styles */
.custom-contact-form {
    max-width: 800px;
}

.form-group-pill {
    margin-bottom: 20px;
}

.form-group-pill label {
    display: block;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group-pill input,
.form-group-pill textarea {
    width: 100%;
    padding: 14px 24px;
    border: 1px solid rgba(140, 112, 0, 0.2);
    border-radius: var(--border-radius-pill);
    background-color: var(--gray-light);
    color: var(--text-dark);
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition-smooth);
}

.form-group-pill textarea {
    border-radius: var(--border-radius-organic);
    resize: vertical;
}

.form-group-pill input:focus,
.form-group-pill textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: var(--white);
    box-shadow: 0 0 8px rgba(194, 24, 91, 0.15);
}

@media (max-width: 480px) {
    .w-full-mobile {
        width: 100%;
    }
}

/* Contact Info Column */
.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-card-organic {
    background-color: var(--bg-tint);
    padding: 32px;
    border-radius: var(--border-radius-organic);
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(140, 112, 0, 0.08);
}

.info-card-organic.secondary-tint {
    background-color: var(--gray-light);
}

.info-card-title {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-weight: 700;
}

.info-detail-text {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 24px;
    opacity: 0.85;
}

.info-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.info-item:last-child {
    margin-bottom: 0;
}

.info-icon {
    font-size: 24px;
    line-height: 1;
}

.info-text-group strong {
    display: block;
    font-size: 14px;
    color: var(--color-primary);
}

.info-text-group p,
.info-text-group a {
    font-size: 14px;
    color: var(--text-dark);
    opacity: 0.9;
}

.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(140, 112, 0, 0.15);
}

.hours-list li:last-child {
    border-bottom: none;
}

/* Legal Texts (Cookies & Terms) */
.legal-text-main {
    background-color: var(--gray-light);
}

.legal-section {
    background-color: var(--white);
    border-radius: var(--border-radius-organic);
    box-shadow: var(--shadow-subtle);
    margin: 32px 16px;
}

@media (min-width: 768px) {
    .legal-section {
        margin: 60px auto;
    }
}

.last-updated {
    font-size: 13px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 24px;
}

.legal-content-block h2 {
    font-size: 18px;
    color: var(--color-primary);
    margin-top: 28px;
    margin-bottom: 12px;
    font-weight: 700;
}

.legal-content-block p {
    font-size: 14px;
    color: var(--text-dark);
    margin-bottom: 16px;
    opacity: 0.9;
}

.legal-content-block ul {
    margin-left: 20px;
    margin-bottom: 16px;
    font-size: 14px;
    color: var(--text-dark);
}

.legal-content-block li {
    margin-bottom: 8px;
}

/* Thank You Halaman */
.thank-you-main {
    background-color: var(--gray-light);
}

.thank-you-card-organic {
    background-color: var(--white);
    padding: 40px 24px;
    border-radius: var(--border-radius-organic);
    text-align: center;
    box-shadow: var(--shadow-subtle);
    border: 1px solid rgba(140, 112, 0, 0.05);
}

.thank-you-icon {
    font-size: 64px;
    display: block;
    margin-bottom: 16px;
}

.thank-you-text {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 32px;
    opacity: 0.9;
}

.next-steps-block {
    text-align: left;
    background-color: var(--bg-tint);
    padding: 24px;
    border-radius: var(--border-radius-organic);
    margin-bottom: 32px;
}

.next-steps-block h3 {
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 16px;
    font-weight: 700;
}

.next-steps-list {
    list-style: none;
}

.next-steps-list li {
    margin-bottom: 16px;
}

.next-steps-list li:last-child {
    margin-bottom: 0;
}

.next-steps-list strong {
    display: block;
    font-size: 14px;
    color: var(--color-accent);
}

.next-steps-list p {
    font-size: 13px;
    color: var(--text-dark);
    opacity: 0.9;
}

@media (min-width: 768px) {
    .thank-you-card-organic {
        padding: 60px;
    }
}

/* Footer Styles - Hardcoded Colors to Protect from Auto-Translators */
.site-footer {
    padding: 48px 16px 24px 16px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1fr;
    }
}

.footer-brand-column {
    display: flex;
    flex-direction: column;
}

.footer-logo {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 12px;
}

.footer-about {
    font-size: 13px;
    line-height: 1.5;
    opacity: 0.85;
}

.footer-heading {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.footer-links-list {
    list-style: none;
    padding: 0;
}

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    font-size: 13px;
    opacity: 0.85;
    transition: var(--transition-smooth);
}

.footer-links-list a:hover {
    opacity: 1;
    padding-left: 4px;
}

.footer-contact-column p {
    font-size: 13px;
    margin-bottom: 10px;
    opacity: 0.85;
}

.footer-bottom {
    padding-top: 24px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.75;
}

/* Cookie Banner Custom Style */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 24px;
    background-color: var(--color-primary);
    color: var(--text-light);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    box-shadow: 0 -4px 16px rgba(140, 112, 0, 0.15);
    transform: translateY(0);
    transition: transform 0.4s ease;
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 13px;
}

#cookie-banner a {
    color: var(--text-light);
    text-decoration: underline;
    font-weight: 600;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    font-weight: 700;
    font-size: 12px;
    transition: var(--transition-smooth);
}

.cookie-btn-accept:hover {
    background-color: var(--white);
    color: var(--color-accent);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--text-light);
    border: 1px solid var(--text-light);
    padding: 10px 20px;
    border-radius: var(--border-radius-pill);
    cursor: pointer;
    font-weight: 600;
    font-size: 12px;
    transition: var(--transition-smooth);
}

.cookie-btn-decline:hover {
    background-color: rgba(255, 251, 224, 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;
    }
}