/* Color Palette: Coral and Slate */
:root {
    --primary-color: #FF6F61; /* Coral */
    --secondary-color: #F08080; /* Light Coral */
    --dark-color: #34495E; /* Wet Asphalt / Slate */
    --light-color: #FFFFFF;
    --bg-color: #FDFDFD;
    --text-color: #333333;
    --text-light: #555555;
    --border-color: #EAEAEA;
    --pill-radius: 50px;
    --card-radius: 28px;
    --shadow-subtle: 0 4px 15px rgba(0, 0, 0, 0.07);
}

/* --- Global Styles & Resets --- */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.7;
    background-color: var(--bg-color);
    color: var(--text-color);
    font-size: 16px;
}

h1, h2, h3, h4 {
    font-family: "Georgia", serif;
    color: var(--dark-color);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 8vw, 5rem); }
h2 { font-size: clamp(2rem, 6vw, 3rem); }
h3 { font-size: clamp(1.25rem, 4vw, 1.5rem); }

p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--dark-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

/* --- Layout Components --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
}

.section-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}

/* --- Header --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--light-color);
    border-bottom: 1px solid var(--border-color);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    z-index: 100;
    color: var(--dark-color);
}

.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;
    background-color: var(--dark-color);
    margin: 5px 0;
    transition: 0.3s;
}

.menu-checkbox { display: none; }

.desktop-nav { display: block; }
.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}
.desktop-nav a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-light);
    padding: 8px 0;
    position: relative;
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}
.desktop-nav a:hover::after {
    width: 100%;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 70px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
    z-index: 99;
    background-color: var(--light-color);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}
.mobile-nav ul { padding: 20px; }
.mobile-nav li {
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}
.mobile-nav a {
    font-size: 1.2rem;
    color: var(--dark-color);
}

@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 (Grid Overlap) --- */
.hero-section-overlap {
    padding: 60px 0;
    background-color: var(--bg-color);
}
.hero-grid-overlap {
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    gap: 2rem;
}
.hero-image-container {
    position: relative;
}
.hero-image {
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-subtle);
}
.hero-content-overlap {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-subtle);
}
.hero-title {
    font-size: clamp(2rem, 6vw, 3.5rem);
    margin-bottom: 1rem;
}
.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.1rem);
    margin-bottom: 2rem;
}

@media (min-width: 992px) {
    .hero-grid-overlap {
        grid-template-columns: 1.2fr 1fr;
        gap: 0;
    }
    .hero-content-overlap {
        transform: translateX(-80px);
        padding: 3rem;
    }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 14px 32px;
    border-radius: var(--pill-radius);
    font-weight: bold;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}
.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}
.btn-primary:hover {
    background-color: #E55B50;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 111, 97, 0.3);
}
.btn-secondary {
    background-color: transparent;
    color: var(--dark-color);
    border-color: var(--dark-color);
}
.btn-secondary:hover {
    background-color: var(--dark-color);
    color: var(--light-color);
}

/* --- Benefits Section (2x2 Grid) --- */
.benefits-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.benefit-card {
    background: var(--light-color);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-subtle);
    border: 1px solid var(--border-color);
}
.card-title {
    margin-bottom: 0.75rem;
}
.card-text {
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .benefits-grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* --- Quote Highlight Section --- */
.quote-highlight-section {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 80px 0;
}
.quote-block {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.quote-symbol {
    font-size: 8rem;
    font-family: "Georgia", serif;
    color: var(--primary-color);
    position: absolute;
    top: -3rem;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0.3;
    line-height: 1;
}
.quote-text {
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    font-style: italic;
    font-family: "Georgia", serif;
    color: var(--light-color);
    position: relative;
    z-index: 1;
    margin-bottom: 2rem;
}
.quote-author {
    font-weight: bold;
    color: var(--secondary-color);
    font-style: normal;
}

/* --- Icon Features Section --- */
.icon-features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.icon-feature-item {
    text-align: center;
}
.icon-feature-emoji {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}
.icon-feature-title {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.icon-feature-item p {
    margin-bottom: 0;
}
@media (min-width: 576px) {
    .icon-features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .icon-features-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Testimonials Section --- */
.testimonials-section {
    background-color: #f7f7f7;
}
.testimonials-list {
    display: grid;
    gap: 1.5rem;
}
.testimonial-item {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-subtle);
}
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}
.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    margin-right: 1rem;
}
.testimonial-name {
    font-weight: bold;
    margin-bottom: 0.25rem;
    color: var(--dark-color);
}
.testimonial-rating {
    color: var(--primary-color);
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 0;
}
@media (min-width: 1024px) {
    .testimonials-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* --- Checklist Block --- */
.checklist-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}
.checklist {
    padding-left: 0;
}
.checklist li {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}
.checkmark {
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: bold;
    margin-right: 1rem;
}
@media (min-width: 768px) {
    .checklist-block { grid-template-columns: repeat(2, 1fr); }
}

/* --- Footer --- */
.site-footer {
    background-color: var(--dark-color) !important;
    color: #a9b4c2 !important;
    padding: 60px 0 20px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
}
.site-footer h4 { color: var(--light-color) !important; }
.site-footer p, .site-footer a { color: #a9b4c2 !important; }
.site-footer a:hover { color: var(--light-color) !important; }
.footer-links ul, .footer-legal ul { padding: 0; }
.footer-links li, .footer-legal li { margin-bottom: 0.5rem; }
.footer-copyright {
    text-align: center;
    border-top: 1px solid #4a627a;
    padding-top: 20px;
    margin-top: 20px;
}
@media (min-width: 576px) {
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 992px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}

/* --- Inner Pages --- */
.page-hero {
    text-align: center;
    padding: 40px 0;
    background-color: #f7f7f7;
}
.page-title { margin-bottom: 0.5rem; }
.page-subtitle { max-width: 800px; margin: 0 auto; }
.legal-page .container { max-width: 800px; }
.legal-page h2 { margin-top: 2rem; }

/* --- Program Page (Numbered Sections) --- */
.numbered-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 4rem;
    align-items: center;
}
.numbered-section-number {
    font-size: 10rem;
    font-weight: bold;
    color: var(--primary-color);
    opacity: 0.15;
    line-height: 0.8;
}
.numbered-section-title {
    margin-bottom: 1rem;
}
.numbered-section.reverse {
    flex-direction: column;
}
.content-image-styled {
    border-radius: var(--card-radius);
    margin-top: 2rem;
    box-shadow: var(--shadow-subtle);
}
@media (min-width: 992px) {
    .numbered-section {
        flex-direction: row;
        gap: 4rem;
    }
    .numbered-section.reverse {
        flex-direction: row-reverse;
    }
    .numbered-section-number {
        font-size: 12rem;
    }
    .numbered-section-content {
        flex: 1;
    }
}

/* --- Mission Page (Story-Team) --- */
.story-team-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: center;
}
.team-image-container { text-align: center; }
.team-image { border-radius: var(--card-radius); box-shadow: var(--shadow-subtle); }
.image-caption { font-style: italic; margin-top: 1rem; font-size: 0.9rem; }
@media (min-width: 992px) {
    .story-team-container { grid-template-columns: 2fr 1.5fr; gap: 4rem; }
}
.values-section { background-color: #f7f7f7; }
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}
.value-card {
    background-color: var(--light-color);
    padding: 2rem;
    border-radius: var(--card-radius);
    box-shadow: var(--shadow-subtle);
}
@media (min-width: 768px) {
    .values-grid { grid-template-columns: repeat(3, 1fr); }
}

/* --- Contact Page --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}
.contact-section-title { margin-bottom: 1.5rem; }
.contact-item { margin-bottom: 1.5rem; }
.contact-item-title { font-size: 1.1rem; margin-bottom: 0.25rem; }
.contact-item p { margin-bottom: 0; }
.contact-form .form-group { margin-bottom: 1.5rem; }
.contact-form label { display: block; margin-bottom: 0.5rem; font-weight: 500; }
.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid var(--border-color);
    border-radius: var(--pill-radius);
    font-size: 1rem;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.contact-form input:focus, .contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255, 111, 97, 0.2);
}
.contact-form textarea { resize: vertical; }
.form-submit-btn { width: 100%; }
@media (min-width: 992px) {
    .contact-grid { grid-template-columns: 1fr 1.5fr; }
}

/* --- Thank You Page --- */
.thank-you-section { text-align: center; padding: 80px 0; }
.thank-you-content { max-width: 700px; margin: 0 auto; }
.next-steps { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid var(--border-color); }
.next-steps-links { display: flex; justify-content: center; gap: 1rem; margin-top: 1.5rem; flex-wrap: wrap; }
.back-to-home { display: inline-block; margin-top: 3rem; }

/* --- CTA Section --- */
.cta-section { background-color: var(--secondary-color); }
.cta-content { text-align: center; }
.cta-content h2 { color: var(--light-color); }
.cta-content p { color: var(--light-color); opacity: 0.9; }
.cta-content .btn { margin-top: 1rem; }

/* --- Cookie Banner --- */
#cookie-banner {
    position: fixed; bottom: 0; left: 0; right: 0; z-index: 9999;
    padding: 18px 24px;
    background-color: var(--dark-color);
    color: var(--light-color);
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 16px;
    transform: translateY(0); transition: transform 0.4s ease;
    box-shadow: 0 -5px 20px rgba(0,0,0,0.1);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; color: var(--light-color) !important; }
#cookie-banner a { color: var(--primary-color) !important; text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 10px 20px;
    border: none;
    border-radius: var(--pill-radius);
    cursor: pointer;
    font-weight: bold;
}
.cookie-btn-accept { background-color: var(--primary-color); color: var(--light-color); }
.cookie-btn-decline { background-color: #555; color: var(--light-color); }
@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; }
}