/*
  Design System:
  - design-style: minimalist
  - border-style: rounded
  - shadow-style: subtle
  - color-mode: mixed
  - Palette: Warm Terracotta
*/

:root {
    --primary-color: #E57373; /* Soft Terracotta Red */
    --secondary-color: #F0A500; /* Muted Gold/Orange */
    --dark-bg: #2C2C2C;
    --light-bg: #F9F9F9;
    --text-light: #EAEAEA;
    --text-dark: #333333;
    --border-color: #DDDDDD;
    --font-primary: 'Lato', sans-serif;
    --font-secondary: 'Poppins', sans-serif;
}

/* --- Global Styles --- */
body {
    margin: 0;
    font-family: var(--font-primary);
    font-size: clamp(16px, 1.5vw, 18px);
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--light-bg);
}

h1, h2, h3, h4 {
    font-family: var(--font-secondary);
    font-weight: 700;
    margin-top: 0;
}

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 60px 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 a:hover {
    color: var(--light-bg);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.section-title {
    font-size: clamp(28px, 5vw, 42px);
    margin-bottom: 16px;
}

.section-intro {
    font-size: clamp(16px, 2vw, 20px);
    opacity: 0.9;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    font-family: var(--font-secondary);
    font-weight: 600;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary {
    background-color: var(--primary-color);
    color: #FFF;
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    color: #FFF;
}

.btn-secondary {
    background-color: var(--secondary-color);
    color: var(--dark-bg);
    border: 2px solid var(--secondary-color);
}
.btn-secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(240, 165, 0, 0.3);
    color: var(--dark-bg);
}

/* --- Header --- */
.site-header {
    position: relative;
    padding: 15px 10px;
    background-color: #FFFFFF;
    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(--text-dark);
}

.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: 600;
    padding: 5px 0;
    position: relative;
}
.desktop-nav a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    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: 65px;
    left: 0;
    right: 0;
    width: 100%;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    z-index: 99;
    background-color: #FFFFFF;
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    text-align: center;
}
.mobile-nav a {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

/* --- Footer --- */
.site-footer-dark {
    background-color: var(--dark-bg) !important;
    color: var(--text-light) !important;
    padding: 60px 0 20px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.footer-column h4 {
    font-size: 20px;
    margin-bottom: 15px;
    color: #FFFFFF;
}

.footer-column p, .footer-column li {
    margin-bottom: 10px;
    opacity: 0.8;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column a {
    color: var(--text-light) !important;
}
.footer-column a:hover {
    color: var(--secondary-color) !important;
}

.footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
    opacity: 0.7;
}

/* --- INDEX PAGE --- */
/* Hero: Bold Text Only */
.hero-bold-text-only {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #4a4a4a 100%);
    color: var(--text-light);
}
.hero-title {
    font-size: clamp(40px, 8vw, 72px);
    line-height: 1.1;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: clamp(18px, 3vw, 22px);
    max-width: 700px;
    margin: 0 auto 30px;
    opacity: 0.9;
}

/* Benefits 2x2 */
.benefits-grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.benefit-card {
    background-color: #FFFFFF;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.card-title {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

/* Testimonials */
.testimonials-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.testimonial-item {
    background-color: #3a3a3a;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}
.testimonial-rating {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 10px;
}
.testimonial-text {
    font-style: italic;
    margin-bottom: 16px;
}
.testimonial-author {
    font-weight: 700;
    opacity: 0.8;
}

/* Comparison Table */
.comparison-table-wrapper {
    overflow-x: auto;
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}
.comparison-table th, .comparison-table td {
    padding: 16px;
    text-align: left;
    border: 1px solid var(--border-color);
}
.comparison-table thead {
    background-color: #f1f1f1;
}
.comparison-table th {
    font-family: var(--font-secondary);
}
.check-mark { color: #50a162; font-weight: bold; }
.cross-mark { color: #c94c4c; font-weight: bold; }

/* Stats Bar */
.stats-bar-section {
    padding: 50px 0;
    background-color: var(--primary-color);
    background-image: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('img/bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: #FFF;
}
.stats-bar-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    text-align: center;
}
.stat-item {
    display: flex;
    flex-direction: column;
}
.stat-number {
    font-size: clamp(40px, 6vw, 64px);
    font-weight: 700;
    line-height: 1;
}
.stat-label {
    font-size: 16px;
    max-width: 250px;
}

/* Icon Features */
.icon-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}
.icon-feature-item {
    text-align: center;
}
.icon-feature-emoji {
    font-size: 48px;
    line-height: 1;
}
.icon-feature-title {
    font-size: 18px;
    margin: 10px 0 5px;
}
.icon-feature-item p {
    font-size: 14px;
    opacity: 0.8;
    margin: 0;
}

/* --- PROGRAM PAGE --- */
.page-header-section {
    text-align: center;
    padding-bottom: 40px;
}
.page-title {
    font-size: clamp(32px, 6vw, 52px);
    margin-bottom: 16px;
}
.page-intro {
    max-width: 800px;
    margin: 0 auto;
    font-size: clamp(16px, 2.5vw, 20px);
}
.numbered-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 60px;
    align-items: center;
}
.numbered-section-number {
    font-size: clamp(60px, 15vw, 120px);
    font-weight: 700;
    color: var(--primary-color);
    opacity: 0.2;
    line-height: 1;
}
.numbered-section-title {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 16px;
}
.content-image-rounded {
    border-radius: 12px;
    margin-top: 20px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.section-cta {
    background-color: var(--dark-bg);
    color: var(--text-light);
}
.cta-container {
    text-align: center;
}
.cta-title {
    font-size: clamp(24px, 4vw, 36px);
    margin-bottom: 16px;
}
.cta-text {
    margin-bottom: 30px;
}

/* --- MISSION PAGE --- */
.story-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}
.story-image {
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}
.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}
.value-card {
    background-color: #3a3a3a;
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255,255,255,0.1);
}

/* --- CONTACT PAGE --- */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}
.contact-section-title {
    font-size: 24px;
    margin-bottom: 20px;
}
.form-group {
    margin-bottom: 20px;
}
.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
}
.form-group input, .form-group textarea {
    width: calc(100% - 24px);
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 16px;
}
.form-submit-btn {
    width: 100%;
}
.contact-info-item {
    margin-bottom: 24px;
}
.contact-info-title {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary-color);
}
.contact-info-item p {
    margin: 0;
}

/* --- LEGAL & THANK YOU PAGES --- */
.legal-content h1 {
    margin-bottom: 24px;
}
.legal-content h2 {
    margin-top: 32px;
    margin-bottom: 16px;
    font-size: 24px;
}
.legal-content ul {
    padding-left: 20px;
}
.thank-you-container {
    text-align: center;
    padding: 60px 20px;
}
.thank-you-title {
    font-size: clamp(32px, 5vw, 48px);
}
.next-steps {
    margin-top: 40px;
}
.next-steps-links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 20px;
}
.next-step-card {
    display: block;
    padding: 24px;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-dark);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.next-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.next-step-card h3 {
    color: var(--primary-color);
}

/* --- 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(--dark-bg);
    color: var(--text-light);
    border-top: 2px solid var(--secondary-color);
}
#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-radius: 8px;
    border: none;
    cursor: pointer;
    font-weight: 600;
}
.cookie-btn-accept { background-color: var(--primary-color); color: #fff; }
.cookie-btn-decline { background-color: #555; color: #fff; }

/* --- Media Queries (Mobile First) --- */
@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); }
}

@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; }
    .footer-container { grid-template-columns: repeat(2, 1fr); }
    .footer-about { grid-column: 1 / -1; }
    .benefits-grid-2x2 { grid-template-columns: repeat(2, 1fr); }
    .stats-bar-container { flex-direction: row; justify-content: space-around; }
    .icon-features-grid { grid-template-columns: repeat(3, 1fr); }
    .numbered-section { flex-direction: row; gap: 40px; }
    .numbered-section.reverse { flex-direction: row-reverse; }
    .numbered-section-number { text-align: center; }
    .numbered-section-content { flex: 1; }
    .story-container { grid-template-columns: 1fr 1fr; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-layout { grid-template-columns: 3fr 2fr; }
    .next-steps-links { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
    .footer-container { grid-template-columns: 2fr 1fr 1fr 2fr; }
    .footer-about { grid-column: auto; }
    .testimonials-list { grid-template-columns: repeat(3, 1fr); }
}