/*
* Design System: Minimalist
* Border Style: Sharp
* Shadow Style: Dramatic
* Color Mode: Light
* Color Palette: Graphite & Copper
*/

:root {
    --color-primary: #E67E22; /* Copper/Orange */
    --color-secondary: #2C3E50; /* Graphite */
    --color-background: #FDFEFE; /* Almost White */
    --color-text: #34495E; /* Dark Slate */
    --color-light-bg: #F4F6F7;
    --color-border: #EAECEE;
    --font-family-base: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --shadow-dramatic: 0 24px 64px rgba(44, 62, 80, 0.22);
    --shadow-dramatic-hover: 0 32px 80px rgba(44, 62, 80, 0.30);
}

/* --- General Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-base);
    font-size: 16px;
    line-height: 1.7;
    color: var(--color-text);
    background-color: var(--color-background);
    -webkit-font-smoothing: antialiased;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    text-decoration: underline;
}

h1, h2, h3 {
    color: var(--color-secondary);
    line-height: 1.2;
    margin-bottom: 20px;
    font-weight: 700;
}

h1 {
    font-size: clamp(2.2rem, 6vw, 3.5rem);
}

h2 {
    font-size: clamp(1.8rem, 5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
}

p {
    margin-bottom: 16px;
}

ul, ol {
    margin-bottom: 16px;
    padding-left: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Layout & Containers --- */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.container-legal {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 16px;
}

.section {
    padding: 64px 0;
}

.section-light-bg {
    background-color: var(--color-light-bg);
}

.section-title {
    text-align: center;
    margin-bottom: 48px;
}

.section-intro {
    max-width: 700px;
    margin: 0 auto 48px auto;
    text-align: center;
    font-size: 1.1rem;
}

.page-header {
    padding: 80px 0;
    text-align: center;
    background-color: var(--color-light-bg);
    border-bottom: 1px solid var(--color-border);
}

/* --- Header & Navigation --- */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-background);
    border-bottom: 1px solid var(--color-border);
}

.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(--color-secondary);
}
.logo:hover {
    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(--color-secondary);
    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 {
    color: var(--color-text);
    font-weight: 500;
}
.desktop-nav a:hover {
    color: var(--color-primary);
    text-decoration: none;
}

.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: 99;
    background-color: var(--color-background);
    box-shadow: var(--shadow-dramatic);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid var(--color-border);
}
.mobile-nav li:last-child {
    border-bottom: none;
}
.mobile-nav a {
    color: var(--color-text);
    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); }
}

/* --- Footer --- */
.site-footer {
    background-color: var(--color-secondary) !important;
    color: var(--color-background) !important;
    padding: 60px 0 20px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    color: var(--color-background) !important;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.footer-column p, .footer-links a {
    color: #bdc3c7 !important;
}

.footer-links {
    list-style: none;
    padding-left: 0;
}
.footer-links li {
    margin-bottom: 10px;
}
.footer-links a:hover {
    color: var(--color-primary) !important;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #34495E;
    padding-top: 20px;
    font-size: 0.9rem;
}
.footer-bottom p {
    color: #7f8c8d !important;
    margin: 0;
}


@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s ease;
    border-radius: 0; /* Sharp border */
}

.btn-primary {
    background-color: var(--color-primary);
    color: #fff;
    border-color: var(--color-primary);
}
.btn-primary:hover {
    background-color: #d35400;
    border-color: #d35400;
    text-decoration: none;
    transform: translateY(-2px);
    box-shadow: var(--shadow-dramatic);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-secondary);
    border-color: var(--color-secondary);
}
.btn-secondary:hover {
    background-color: var(--color-secondary);
    color: #fff;
    text-decoration: none;
}

.btn-full {
    width: 100%;
}

/* --- Hero Section (Gradient Center) --- */
.hero-gradient-center {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(135deg, var(--color-background) 0%, var(--color-light-bg) 100%);
    position: relative;
    overflow: hidden;
}
.hero-gradient-center::before,
.hero-gradient-center::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border: 1px solid var(--color-border);
    z-index: 0;
    opacity: 0.5;
}
.hero-gradient-center::before {
    top: -100px;
    left: -100px;
}
.hero-gradient-center::after {
    bottom: -150px;
    right: -150px;
}
.hero-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}
.hero-subtitle {
    font-size: 1.2rem;
    margin: 20px 0 30px 0;
    color: var(--color-text);
}

/* --- Timeline Section --- */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.timeline::after {
    content: '';
    position: absolute;
    width: 1px;
    background-color: var(--color-border);
    top: 0;
    bottom: 0;
    left: 15px;
}
.timeline-item {
    padding: 10px 40px 30px 60px;
    position: relative;
}
.timeline-dot {
    position: absolute;
    left: 0;
    top: 15px;
    width: 30px;
    height: 30px;
    background-color: var(--color-background);
    border: 1px solid var(--color-primary);
    z-index: 1;
}
.timeline-content h3 {
    margin-top: 0;
}
@media (max-width: 768px) {
    .timeline::after { left: 15px; }
    .timeline-item { padding-left: 50px; }
    .timeline-dot { left: 0; }
}

/* --- Quote Highlight Section --- */
.quote-highlight-section {
    background-color: var(--color-secondary);
    color: var(--color-background);
    padding: 80px 0;
    text-align: center;
}
.quote-content {
    max-width: 750px;
    margin: 0 auto;
    position: relative;
}
.quote-content .quote-mark {
    font-size: 6rem;
    color: var(--color-primary);
    position: absolute;
    top: -50px;
    left: -30px;
    opacity: 0.5;
    line-height: 1;
}
.quote-content p {
    font-size: clamp(1.4rem, 4vw, 1.8rem);
    font-style: italic;
    margin-bottom: 20px;
}
.quote-content cite {
    font-style: normal;
    font-weight: 600;
    color: #bdc3c7;
}

/* --- Expert Block Section --- */
.expert-block {
    display: grid;
    gap: 32px;
    align-items: center;
}
.expert-image-placeholder {
    width: 100%;
    height: auto;
}
.expert-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-dramatic);
}
.expert-signature {
    font-weight: bold;
    color: var(--color-secondary);
}
@media (min-width: 768px) {
    .expert-block {
        grid-template-columns: 1fr 2fr;
    }
}

/* --- Comparison Table Section --- */
.comparison-table-wrapper {
    overflow-x: auto;
}
.comparison-table {
    width: 100%;
    min-width: 600px;
    border-collapse: collapse;
    box-shadow: var(--shadow-dramatic);
}
.comparison-table th, .comparison-table td {
    padding: 16px;
    text-align: left;
    border: 1px solid var(--color-border);
}
.comparison-table thead {
    background-color: var(--color-secondary);
    color: var(--color-background);
}
.comparison-table tbody tr:nth-child(even) {
    background-color: var(--color-light-bg);
}
.comparison-table .check::before {
    content: '✔';
    color: #27AE60;
    font-weight: bold;
    margin-right: 8px;
}
.comparison-table .cross::before {
    content: '✖';
    color: #C0392B;
    font-weight: bold;
    margin-right: 8px;
}

/* --- FAQ Accordion Section --- */
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    border: 1px solid var(--color-border);
    margin-bottom: 8px;
}
.faq-item:last-child {
    margin-bottom: 0;
}
.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fff;
    color: var(--color-secondary);
}
.faq-question::-webkit-details-marker {
    display: none;
}
.faq-question::after {
    content: '+';
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}
.faq-item[open] > .faq-question::after {
    transform: rotate(45deg);
}
.faq-answer {
    padding: 0 20px 20px 20px;
    background-color: #fff;
}
.faq-answer p {
    margin-bottom: 0;
}

/* --- Program Page: Accordion --- */
.program-accordion {
    max-width: 900px;
    margin: 0 auto;
}
.program-item {
    border: 1px solid var(--color-border);
    margin-bottom: 16px;
    box-shadow: var(--shadow-dramatic);
    transition: box-shadow 0.3s ease;
}
.program-item:hover {
    box-shadow: var(--shadow-dramatic-hover);
}
.program-question {
    padding: 24px;
    cursor: pointer;
    font-weight: 700;
    font-size: 1.2rem;
    background-color: var(--color-light-bg);
    color: var(--color-secondary);
    list-style: none;
}
.program-question::-webkit-details-marker {
    display: none;
}
.program-answer {
    padding: 24px;
    background-color: #fff;
}
.program-answer ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-top: 20px;
}
.program-answer li {
    margin-bottom: 8px;
}

/* --- Mission Page: Vertical Storytelling --- */
.story-block {
    display: grid;
    gap: 32px;
    align-items: center;
    margin-bottom: 64px;
}
.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    box-shadow: var(--shadow-dramatic);
}
.story-title {
    margin-top: 0;
}
@media (min-width: 768px) {
    .story-block { grid-template-columns: 1fr 1fr; }
    .story-block-reverse .story-image-container { order: 2; }
}
.manifesto-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}
.manifesto-content p {
    font-size: 1.2rem;
    line-height: 1.8;
}

/* --- Contact Page --- */
.contact-layout {
    display: grid;
    gap: 48px;
}
@media (min-width: 992px) {
    .contact-layout {
        grid-template-columns: 3fr 2fr;
    }
}
.contact-subtitle {
    margin-top: 0;
    margin-bottom: 24px;
}
.contact-form .form-group {
    margin-bottom: 20px;
}
.contact-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
}
.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid var(--color-border);
    font-family: var(--font-family-base);
    font-size: 1rem;
    border-radius: 0; /* Sharp */
    background-color: var(--color-light-bg);
}
.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--color-primary);
}
.contact-info-item {
    margin-bottom: 24px;
}
.contact-info-item h3 {
    margin-bottom: 8px;
}
.contact-info-item p {
    margin-bottom: 0;
}

/* --- Thank You Page --- */
.thank-you-section {
    text-align: center;
    padding: 100px 0;
}
.thank-you-content h1 {
    margin-bottom: 16px;
}
.thank-you-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.thank-you-next-steps {
    margin-top: 48px;
    padding-top: 48px;
    border-top: 1px solid var(--color-border);
}
.thank-you-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 24px;
}

/* --- 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(--color-secondary);
    color: var(--color-background);
    box-shadow: 0 -10px 40px rgba(0,0,0,0.2);
}
#cookie-banner.hidden { transform: translateY(110%); }
#cookie-banner p { margin: 0; flex: 1; min-width: 200px; }
#cookie-banner p a { color: var(--color-primary); font-weight: bold; }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; flex-wrap: wrap; }
.cookie-btn-accept, .cookie-btn-decline {
    padding: 8px 16px;
    border-radius: 0;
    cursor: pointer;
    border: 1px solid var(--color-primary);
}
.cookie-btn-accept {
    background-color: var(--color-primary);
    color: white;
}
.cookie-btn-decline {
    background-color: transparent;
    color: white;
    border: 1px solid white;
}
@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; }
}

/* --- Misc Utility Classes --- */
.content-image-wrapper {
    max-width: 900px;
    margin: 0 auto 24px auto;
}
.content-image-full {
    width: 100%;
    box-shadow: var(--shadow-dramatic);
}
.image-caption {
    text-align: center;
    font-style: italic;
    color: #7f8c8d;
    max-width: 700px;
    margin: 0 auto;
}