/* 
    Color Palette: Bordeaux & Cream
    --primary-color: #B22B5B; (Bordeaux)
    --secondary-color: #F1A9B8; (Soft Pink)
    --accent-color: #F2D4C9; (Cream)
    --dark-bg: #2c2c2c;
    --light-bg: #fdfaf9;
    --text-light: #f5f5f5;
    --text-dark: #333333;
*/

:root {
    --primary-color: #B22B5B;
    --secondary-color: #F1A9B8;
    --accent-color: #F2D4C9;
    --dark-bg: #2c2c2c;
    --light-bg: #fdfaf9;
    --text-light: #f5f5f5;
    --text-dark: #333333;
    --font-family-base: 'Helvetica Neue', Arial, sans-serif;
    --dramatic-shadow: 0 24px 64px rgba(0,0,0,0.22);
    --dramatic-shadow-hover: 0 32px 80px rgba(0,0,0,0.30);
}

/* --- Global Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-family-base);
    line-height: 1.6;
    background-color: var(--light-bg);
    color: var(--text-dark);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0 0 1rem 0;
    line-height: 1.2;
    font-weight: 700;
}

p {
    margin: 0 0 1rem 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 48px 0;
}

.section-light {
    background-color: var(--light-bg);
    color: var(--text-dark);
}

.section-dark {
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.section-dark a {
    color: var(--secondary-color);
}

.section-dark-gradient {
    background: linear-gradient(145deg, var(--dark-bg) 0%, #414141 100%);
    color: var(--text-light);
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 8px;
}

.section-subtitle {
    font-size: clamp(16px, 2.5vw, 20px);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
}

.section-divider {
    border: 0;
    height: 1px;
    background-color: #ddd;
    margin: 0;
}
.section-dark .section-divider {
    background-color: #444;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    border-radius: 50px; /* pill style */
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-light);
}
.btn-primary:hover {
    background-color: #9d244f;
    transform: translateY(-3px);
    text-decoration: none;
    box-shadow: var(--dramatic-shadow);
}

.btn-secondary {
    background-color: transparent;
    color: var(--text-light);
    border-color: var(--secondary-color);
}
.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    text-decoration: none;
}

/* --- Header --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--light-bg);
    border-bottom: 1px solid #eee;
}

.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(--text-dark);
    text-decoration: none;
}

.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(--text-dark);
    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;
    margin: 0;
    padding: 0;
}
.desktop-nav a {
    color: var(--text-dark);
    font-weight: 500;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 65px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    z-index: 99;
    background-color: var(--dark-bg);
}

.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);
    display: block;
    width: 100%;
}

@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 (Bold Text Only) --- */
.hero-bold-text-only {
    background: linear-gradient(135deg, var(--primary-color), #c73a6e);
    color: var(--text-light);
    padding: 100px 0;
    text-align: center;
}
.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    font-weight: 800;
    margin-bottom: 16px;
}
.hero-subtitle {
    font-size: clamp(18px, 3vw, 22px);
    max-width: 800px;
    margin: 0 auto 32px auto;
    opacity: 0.9;
}

/* --- Benefits Section --- */
.benefits-grid-3col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.benefit-card {
    background-color: #fff;
    padding: 28px;
    border-radius: 28px; /* pill */
    box-shadow: var(--dramatic-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.benefit-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--dramatic-shadow-hover);
}
.card-title {
    font-size: 22px;
    color: var(--primary-color);
}
.card-text {
    font-size: 16px;
}

/* --- Testimonials --- */
.testimonials-container {
    display: grid;
    gap: 32px;
}
.testimonial-item {
    background-color: #383838;
    padding: 24px;
    border-radius: 28px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: var(--secondary-color);
    margin-bottom: 16px;
}
.testimonial-rating {
    color: #f9d71c;
    margin-bottom: 8px;
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 16px;
}
.testimonial-author {
    font-weight: bold;
    color: var(--accent-color);
}

/* --- Checklist Block --- */
.checklist-container {
    max-width: 900px;
    margin: 0 auto;
}
.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px 32px;
}
.checklist li {
    position: relative;
    padding-left: 35px;
    font-size: 18px;
}
.checklist li::before {
    content: '✔';
    position: absolute;
    left: 0;
    top: 0;
    color: var(--primary-color);
    font-size: 24px;
    font-weight: bold;
}

/* --- Icon Features --- */
.icon-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.icon-feature-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 24px;
    border-radius: 28px;
    text-align: center;
}
.icon-feature-icon {
    font-size: 40px;
    margin-bottom: 12px;
}
.icon-feature-title {
    font-size: 18px;
    margin-bottom: 4px;
}
.icon-feature-item p {
    margin: 0;
    font-size: 14px;
    opacity: 0.8;
}

/* --- Expert Block --- */
.expert-block {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.expert-image-container {
    border-radius: 28px;
    overflow: hidden;
    box-shadow: var(--dramatic-shadow);
}
.expert-title {
    font-size: 24px;
}
.expert-quote {
    font-size: 18px;
    font-style: italic;
    border-left: 4px solid var(--primary-color);
    padding-left: 20px;
    margin: 0 0 16px 0;
}
.expert-name {
    font-weight: bold;
    font-size: 18px;
    margin: 0;
}
.expert-credentials {
    opacity: 0.8;
    margin: 0;
}

/* --- Program Page: Timeline --- */
.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline-container::after {
    content: '';
    position: absolute;
    width: 3px;
    background-color: var(--accent-color);
    top: 0;
    bottom: 0;
    left: 15px;
}
.timeline-item {
    padding: 10px 40px;
    position: relative;
    padding-left: 60px;
    margin-bottom: 30px;
}
.timeline-dot {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: var(--light-bg);
    border: 4px solid var(--primary-color);
    top: 15px;
    left: 6px;
    z-index: 1;
}
.timeline-title {
    color: var(--primary-color);
}
.content-image-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.split-image img {
    border-radius: 28px;
}

/* --- Mission Page --- */
.mission-intro-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    align-items: center;
}
.mission-image-container img {
    border-radius: 28px;
    box-shadow: var(--dramatic-shadow);
}
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.value-card {
    background-color: rgba(0,0,0,0.2);
    padding: 24px;
    border-radius: 28px;
    text-align: center;
}
.value-icon {
    font-size: 36px;
    margin-bottom: 12px;
}

/* --- Contact Page --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}
.contact-heading {
    margin-bottom: 24px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px; /* Not pill for usability */
    font-size: 16px;
}
.form-submit-btn {
    width: 100%;
}
.contact-info-block {
    margin-bottom: 24px;
}
.contact-info-block h4 {
    color: var(--primary-color);
}
.contact-info-block p {
    margin: 0;
}

/* --- Legal & Thank You Pages --- */
.legal-page-container h1, .thank-you-section h1 {
    margin-bottom: 24px;
}
.legal-page-container h2 {
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--primary-color);
}
.thank-you-content {
    text-align: center;
    padding: 48px 0;
}
.thank-you-icon {
    font-size: 48px;
    color: var(--primary-color);
    width: 80px;
    height: 80px;
    border: 3px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px auto;
}
.what-next-container {
    margin-top: 48px;
    text-align: center;
}
.next-steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 24px;
}
.next-step-card {
    display: block;
    background: #fff;
    padding: 24px;
    border-radius: 28px;
    box-shadow: var(--dramatic-shadow);
    color: var(--text-dark);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.next-step-card:hover {
    text-decoration: none;
    transform: translateY(-8px);
    box-shadow: var(--dramatic-shadow-hover);
}

/* --- Footer --- */
.site-footer-dark {
    background-color: var(--dark-bg) !important;
    color: var(--text-light) !important;
    padding: 48px 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
}
.footer-heading {
    color: var(--text-light) !important;
    margin-bottom: 16px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 8px;
}
.footer-links a, .footer-column a {
    color: var(--accent-color) !important;
}
.footer-column p {
    margin-bottom: 8px;
    opacity: 0.8;
}

/* --- 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;
    background-color: var(--dark-bg);
    color: var(--text-light);
    box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
    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: 14px; }
#cookie-banner a { color: var(--secondary-color); 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: none;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
}
.cookie-btn-accept { background-color: var(--primary-color); color: white; }
.cookie-btn-decline { background-color: #555; color: white; }

/* --- Media Queries (Mobile First) --- */
@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: 0 24px; }
    .benefits-grid-3col { grid-template-columns: repeat(3, 1fr); }
    .testimonial-item { flex-direction: row; text-align: left; }
    .testimonial-avatar { margin-right: 24px; margin-bottom: 0; flex-shrink: 0;}
    .checklist { grid-template-columns: repeat(2, 1fr); }
    .icon-features-grid { grid-template-columns: repeat(3, 1fr); }
    .expert-block { grid-template-columns: 300px 1fr; }
    .content-image-split { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 2fr 1fr; }
    .next-steps-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: repeat(2, 1fr); }
    .mission-intro-container { grid-template-columns: 400px 1fr; }
}

@media (min-width: 1024px) {
    .footer-grid { grid-template-columns: 2fr 1fr 1fr 1.5fr; }
}