/*
  Palette: Pastel Peach & Lavender
*/
:root {
    --bg-color: #FEF9F3;
    --bg-alt-color: #FDF4E7;
    --primary-color: #D6A4A4;
    --secondary-color: #B284BE;
    --accent-color: #F8C3A4;
    --text-color: #4A3F35;
    --heading-color: #3D342E;
    --border-color: #EAE0D5;
    --white-color: #FFFFFF;
    --footer-bg-color: #3D342E;
    --footer-text-color: #FEF9F3;
}

/* --- Global Styles & Reset --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Nunito', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.7;
    font-size: 16px;
}

a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

h1, h2, h3 {
    color: var(--heading-color);
    font-weight: 800;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 6vw, 4.5rem); }
h2 { font-size: clamp(2rem, 5vw, 2.75rem); }
h3 { font-size: clamp(1.25rem, 4vw, 1.5rem); }

/* --- Layout --- */
.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 16px;
    padding-right: 16px;
}

.section {
    padding: 60px 0;
}

.section-alt {
    background-color: var(--bg-alt-color);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    margin-bottom: 12px;
}

.section-subtitle {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

.text-center {
    text-align: center;
}

/* --- Header --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-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: 24px;
    font-weight: bold;
    z-index: 100;
    color: var(--heading-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(--heading-color);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 3px;
}

.menu-checkbox {
    display: none;
}

.desktop-nav {
    display: block;
}

.desktop-nav .nav-list {
    display: flex;
    list-style: none;
    gap: 32px;
}

.desktop-nav a {
    font-weight: 700;
    font-size: 1rem;
}

.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-out;
    z-index: 99;
    background-color: var(--bg-color);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    padding: 12px 0;
    text-align: center;
}

.mobile-nav a {
    font-size: 1.2rem;
    font-weight: 700;
}

/* --- Components --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 8px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--white-color);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--heading-color);
    border-color: var(--border-color);
}

.btn-secondary:hover {
    background-color: var(--heading-color);
    color: var(--white-color);
    border-color: var(--heading-color);
}

.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    padding-left: 28px;
    position: relative;
    margin-bottom: 12px;
}

.styled-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

/* --- Hero Section (Bold Text) --- */
.hero-bold {
    padding: 100px 0;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--accent-color), var(--bg-alt-color));
}

.hero-content h1 {
    margin-bottom: 20px;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 3vw, 1.25rem);
    max-width: 750px;
    margin: 0 auto 32px auto;
    line-height: 1.6;
}

/* --- Benefits Timeline --- */
.benefits-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 0;
}

.benefits-timeline::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--border-color);
    top: 0;
    bottom: 0;
    left: 20px;
}

.timeline-item {
    padding: 10px 40px 30px 60px;
    position: relative;
}

.timeline-icon {
    position: absolute;
    left: 0;
    top: 15px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary-color);
    border: 4px solid var(--bg-color);
    z-index: 1;
}

.timeline-content h3 {
    margin-bottom: 8px;
}

/* --- Testimonials Section --- */
.testimonials-list {
    display: grid;
    gap: 24px;
}

.testimonial-card {
    background-color: var(--bg-color);
    padding: 24px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}

.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: var(--border-color);
    margin-right: 16px;
}

.testimonial-name {
    font-weight: 700;
    display: block;
}

.testimonial-rating {
    color: var(--accent-color);
    font-size: 1.2rem;
}

/* --- Expert Block --- */
.expert-block {
    display: grid;
    gap: 32px;
    align-items: center;
}

.expert-image-container {
    max-width: 400px;
    margin: 0 auto;
}

.expert-image {
    width: 100%;
    border-radius: 24px;
}

.expert-content blockquote p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 16px;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
}

.expert-content cite {
    font-style: normal;
}

.expert-content cite span {
    display: block;
    font-size: 0.9rem;
}

/* --- Two Column Layout --- */
.two-col-layout {
    display: grid;
    gap: 32px;
    align-items: center;
}
.two-col-image img {
    border-radius: 24px;
}

/* --- CTA Banner --- */
.cta-banner {
    background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
    padding: 60px 0;
    text-align: center;
}

.cta-content h2, .cta-content p {
    color: var(--white-color);
}

.cta-content h2 {
    margin-bottom: 16px;
}

.cta-content p {
    max-width: 600px;
    margin: 0 auto 24px auto;
}

.cta-banner .btn-secondary {
    background-color: var(--white-color);
    color: var(--secondary-color);
    border-color: var(--white-color);
}

.cta-banner .btn-secondary:hover {
    background-color: var(--bg-alt-color);
    color: var(--secondary-color);
    border-color: var(--bg-alt-color);
}

/* --- Program Page --- */
.page-header {
    text-align: center;
    padding-bottom: 30px;
}
.page-title { margin-bottom: 16px; }
.page-subtitle { max-width: 800px; margin: 0 auto; }

.program-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.program-card {
    background-color: var(--white-color);
    border: 1px solid var(--border-color);
    padding: 28px;
    border-radius: 24px;
    text-align: center;
}

.card-icon-placeholder {
    width: 50px;
    height: 50px;
    border-radius: 16px;
    background-color: var(--accent-color);
    margin: 0 auto 20px auto;
}
.program-card h3 {
    margin-bottom: 12px;
}

/* --- Mission Page --- */
.mission-timeline {
    position: relative;
    padding: 20px 0;
}
.mission-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--border-color);
}

.mission-timeline-item {
    position: relative;
    width: 50%;
    padding: 20px 40px;
}
.mission-timeline-item:nth-child(odd) {
    left: 0;
    text-align: right;
}
.mission-timeline-item:nth-child(even) {
    left: 50%;
}
.mission-timeline-date {
    position: absolute;
    top: 30px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    color: var(--white-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    border: 4px solid var(--bg-color);
    z-index: 1;
}
.mission-timeline-item:nth-child(odd) .mission-timeline-date {
    right: -30px;
}
.mission-timeline-item:nth-child(even) .mission-timeline-date {
    left: -30px;
}
.mission-timeline-content h3 {
    margin-bottom: 10px;
}
.values-grid {
    display: grid;
    gap: 24px;
}
.value-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 24px;
    text-align: center;
}
.value-card h3 { margin-bottom: 10px; }

/* --- Contact Page --- */
.centered-form {
    max-width: 800px;
    margin: 0 auto;
    background-color: var(--white-color);
    padding: 32px;
    border-radius: 24px;
    border: 1px solid var(--border-color);
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
}
.form-submit-btn {
    width: 100%;
}
.contact-cards-container {
    display: grid;
    gap: 24px;
}
.contact-card {
    background-color: var(--bg-color);
    border: 1px solid var(--border-color);
    padding: 24px;
    border-radius: 24px;
    text-align: center;
}
.contact-card h3 { margin-bottom: 12px; }

/* --- Legal & Thank You Pages --- */
.legal-content, .thank-you-section { max-width: 800px; }
.legal-content h1, .legal-content h2 { margin-top: 24px; margin-bottom: 12px; }
.thank-you-section h1 { margin-bottom: 16px; }
.thank-you-section p { margin-bottom: 12px; }
.next-steps { margin-top: 40px; }
.next-steps-links { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-top: 20px; }
.back-home-link { display: inline-block; margin-top: 40px; font-weight: 700; }

/* --- Footer --- */
.site-footer {
    background-color: var(--footer-bg-color) !important;
    color: var(--footer-text-color) !important;
    padding: 40px 0 0 0;
}
.footer-container {
    display: grid;
    gap: 32px;
    padding-bottom: 40px;
}
.site-footer h3, .site-footer p, .site-footer a {
    color: var(--footer-text-color) !important;
}
.footer-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
}
.footer-links ul {
    list-style: none;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 20px 0;
    text-align: center;
    font-size: 0.9rem;
}
.thank-you-section {
    margin: 0 auto;
}
/* --- 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(--heading-color);
    color: var(--white-color);
    border-top: 1px solid var(--border-color);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; font-size: 0.9rem; }
#cookie-banner a { text-decoration: underline; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 16px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    font-weight: 700;
}
.cookie-btn-accept { background-color: var(--primary-color); color: var(--white-color); }
.cookie-btn-decline { background-color: transparent; color: var(--white-color); border: 1px solid var(--white-color); }

/* --- Media Queries (Mobile First) --- */
@media (max-width: 768px) {
    .desktop-nav { display: none; }
    .hamburger, .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); }

    .mission-timeline::before { left: 20px; }
    .mission-timeline-item { width: 100%; padding-left: 60px; padding-right: 0; text-align: left !important; }
    .mission-timeline-item:nth-child(even) { left: 0; }
    .mission-timeline-date { left: 0 !important; }
}

@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; }
}

@media (min-width: 768px) {
    .section { padding: 80px 0; }
    .container { padding-left: 24px; padding-right: 24px; }
    .testimonials-list { grid-template-columns: repeat(2, 1fr); }
    .expert-block { grid-template-columns: 1fr 1.2fr; }
    .two-col-layout { grid-template-columns: 1fr 1fr; }
    .two-col-layout.reverse .two-col-image { order: 2; }
    .program-grid { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(3, 1fr); }
    .contact-cards-container { grid-template-columns: repeat(3, 1fr); }
    .footer-container { grid-template-columns: 2fr 1fr 1fr; }
}

@media (min-width: 1024px) {
    .testimonials-list { grid-template-columns: repeat(3, 1fr); }
    .program-grid { grid-template-columns: repeat(3, 1fr); }
}