/* CSS PALETTE: charcoal-teal */
/* #1C2A35, #37474F, #00695C, #F5F8F8 */

:root {
    --color-primary: #1C2A35;
    --color-secondary: #37474F;
    --color-accent: #00695C;
    --bg-tint: #F5F8F8;
    --color-white: #FFFFFF;
    
    /* Soft-organic style, rounded borders, dramatic shadows */
    --radius-card: 24px;
    --radius-btn: 8px;
    --radius-pill: 50px;
    --shadow-dramatic: 0 24px 64px rgba(28, 42, 53, 0.15);
    --shadow-hover: 0 32px 80px rgba(0, 105, 92, 0.25);
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
    background-color: var(--bg-tint);
    color: var(--color-secondary);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

/* Header Layout & Navigation */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-primary);
    color: var(--color-white);
    z-index: 1000;
}

.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;
    color: var(--color-white);
    z-index: 100;
}

.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;
    margin: 5px 0;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
    border-radius: 3px;
}

.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 .nav-list a {
    font-weight: 500;
    font-size: 16px;
}

.desktop-nav .nav-list a:hover {
    color: #00897B;
}

.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-primary);
}

.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(--color-white);
    font-size: 18px;
    display: block;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--radius-btn);
    cursor: pointer;
    text-align: center;
    transition: var(--transition-smooth);
    border: none;
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-white);
}

.btn-primary:hover {
    background-color: #004d40;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 105, 92, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-primary);
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Sections */
.section {
    padding: 48px 16px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-dark {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.section-light {
    background-color: var(--bg-tint);
    color: var(--color-secondary);
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: clamp(28px, 4vw, 38px);
    color: inherit;
    margin-bottom: 12px;
}

/* Hero Section: fullscreen-center */
.hero-section {
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
    padding: 48px 16px;
    color: var(--color-white);
}

.hero-content {
    max-width: 800px;
}

.badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-size: clamp(32px, 6vw, 56px);
    line-height: 1.15;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content p {
    font-size: clamp(16px, 2vw, 20px);
    line-height: 1.6;
    margin-bottom: 36px;
    opacity: 0.9;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero Small (Internal pages) */
.hero-small {
    padding: 80px 16px;
    background-size: cover;
    background-position: center;
    color: var(--color-white);
    text-align: center;
}

.hero-small h1 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 12px;
}

.hero-small p {
    font-size: 18px;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.9;
}

/* Benefits Horizontal Scroll */
.benefits-hscroll-container {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 24px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--color-accent) var(--color-secondary);
}

.benefit-card {
    flex: 0 0 300px;
    background-color: var(--color-secondary);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    scroll-snap-align: start;
    transition: var(--transition-smooth);
}

.benefit-card:hover {
    transform: translateY(-8px);
    background-color: #455a64;
}

.benefit-icon {
    font-size: 36px;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 16px;
}

.benefit-card h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--color-white);
}

/* FAQ Accordion Summary */
.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: var(--color-white);
    margin-bottom: 16px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-question {
    padding: 24px;
    font-weight: 700;
    font-size: 18px;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--color-primary);
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: "+";
    font-size: 24px;
    color: var(--color-accent);
}

.faq-item[open] .faq-question::after {
    content: "−";
}

.faq-answer {
    padding: 0 24px 24px 24px;
    color: var(--color-secondary);
}

/* Quote Highlight */
.quote-highlight-section {
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 64px 16px;
    text-align: center;
}

.quote-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.quote-icon {
    font-size: 80px;
    line-height: 1;
    display: block;
    margin-bottom: -10px;
    font-family: Georgia, serif;
    opacity: 0.3;
}

.quote-wrapper blockquote {
    font-size: clamp(20px, 3vw, 28px);
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 20px;
}

.quote-wrapper cite {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
}

/* Testimonials Vertical */
.testimonials-vertical {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    transition: var(--transition-smooth);
}

.testimonial-card:hover {
    transform: scale(1.02);
}

.testimonial-rating {
    color: #FFB300;
    font-size: 20px;
    margin-bottom: 12px;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: var(--color-secondary);
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 18px;
}

.testimonial-author h4 {
    font-size: 16px;
    color: var(--color-primary);
}

.testimonial-author span {
    font-size: 14px;
    color: #78909c;
}

/* Checklist Block */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.checklist-item {
    display: flex;
    gap: 16px;
    background-color: var(--color-secondary);
    padding: 24px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
}

.checkmark {
    font-size: 28px;
    color: var(--color-accent);
    line-height: 1;
}

.checklist-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--color-white);
}

/* Program Page Details */
.program-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.program-image-wrapper {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-dramatic);
}

.program-side-img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.image-caption {
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 24px;
}

.image-caption h4 {
    margin-bottom: 8px;
}

.program-accordion-item {
    background-color: var(--color-white);
    margin-bottom: 16px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    overflow: hidden;
}

.program-accordion-header {
    padding: 24px;
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
}

.program-accordion-header::-webkit-details-marker {
    display: none;
}

.module-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--color-accent);
}

.program-accordion-header h3 {
    font-size: 18px;
    color: var(--color-primary);
}

.program-accordion-content {
    padding: 24px 24px 24px 64px;
    border-top: 1px solid #eceff1;
}

.program-accordion-content p {
    margin-bottom: 16px;
}

.program-accordion-content ul {
    padding-left: 20px;
}

.program-accordion-content li {
    margin-bottom: 8px;
}

/* Stats Section */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    text-align: center;
}

.stat-card {
    background-color: var(--color-secondary);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
}

.stat-number {
    display: block;
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.stat-label {
    font-size: 16px;
    color: var(--color-white);
}

/* CTA Center Box */
.cta-center-box {
    text-align: center;
    background-color: var(--color-primary);
    color: var(--color-white);
    padding: 48px 24px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    max-width: 800px;
    margin: 0 auto;
}

.cta-center-box h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.cta-center-box p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.9;
}

/* Mission Page Details */
.mission-split {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.mission-image-side {
    position: relative;
    border-radius: var(--radius-card);
    overflow: hidden;
    box-shadow: var(--shadow-dramatic);
}

.mission-img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.mission-badge-overlay {
    position: absolute;
    top: 24px;
    left: 24px;
    background-color: var(--color-accent);
    color: var(--color-white);
    padding: 8px 20px;
    border-radius: var(--radius-pill);
    font-weight: 700;
}

.mission-text-side h2 {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.mission-text-side p {
    margin-bottom: 16px;
}

.values-list {
    margin-top: 32px;
}

.values-list h3 {
    margin-bottom: 20px;
    color: var(--color-primary);
}

.value-item {
    display: flex;
    gap: 16px;
    margin-bottom: 24px;
}

.value-bullet {
    font-size: 32px;
    color: var(--color-accent);
    line-height: 1;
}

.value-item h4 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.story-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-box h2 {
    font-size: 32px;
    margin-bottom: 20px;
}

.story-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

/* Contact Grid Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.contact-info-side h2, .contact-form-side h2 {
    font-size: 32px;
    color: var(--color-primary);
    margin-bottom: 16px;
}

.contact-info-side p, .contact-form-side p {
    margin-bottom: 32px;
}

.contact-card-item {
    display: flex;
    gap: 20px;
    background-color: var(--color-white);
    padding: 24px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
    margin-bottom: 20px;
}

.contact-icon-box {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: var(--color-accent);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.contact-card-item h4 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.working-hours {
    margin-top: 32px;
    padding: 24px;
    background-color: #eceff1;
    border-radius: var(--radius-card);
}

.working-hours h3 {
    margin-bottom: 12px;
    color: var(--color-primary);
}

/* Forms */
.contact-form {
    background-color: var(--color-white);
    padding: 32px;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-dramatic);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-primary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    border-radius: 8px;
    border: 2px solid #cfd8dc;
    font-family: inherit;
    font-size: 16px;
    transition: var(--transition-smooth);
}

.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
}

/* Footer style protection against auto-translators */
.site-footer {
    background-color: #1C2A35 !important;
    color: #F5F8F8 !important;
    padding: 64px 16px 24px 16px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-brand p {
    margin-top: 16px;
    font-size: 15px;
    opacity: 0.8;
}

.footer-links h3, .footer-legal h3, .footer-contacts h3 {
    font-size: 18px;
    color: #FFFFFF !important;
    margin-bottom: 20px;
}

.footer-links ul, .footer-legal ul {
    list-style: none;
}

.footer-links li, .footer-legal li {
    margin-bottom: 12px;
}

.footer-links a, .footer-legal a {
    opacity: 0.8;
    font-size: 15px;
}

.footer-links a:hover, .footer-legal a:hover {
    opacity: 1;
    color: #00695C !important;
}

.footer-contacts p {
    font-size: 15px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 14px;
    opacity: 0.6;
}

/* 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(--color-primary);
    color: var(--color-white);
    transform: translateY(0);
    transition: transform 0.4s ease;
    box-shadow: 0 -8px 32px rgba(0,0,0,0.15);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 15px;
}

#cookie-banner a {
    color: var(--color-accent);
    text-decoration: underline;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--color-white);
    border: none;
    padding: 10px 20px;
    border-radius: var(--radius-btn);
    cursor: pointer;
    font-weight: 600;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid rgba(255,255,255,0.3);
    padding: 10px 20px;
    border-radius: var(--radius-btn);
    cursor: pointer;
}

/* Responsive Media Queries (Mobile-First) */
@media (min-width: 768px) {
    .section {
        padding: 80px 24px;
    }

    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .program-split {
        grid-template-columns: 40% 60%;
        align-items: start;
    }

    .program-side-img {
        height: 500px;
    }

    .stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .mission-split {
        grid-template-columns: 45% 55%;
        align-items: start;
    }

    .contact-grid {
        grid-template-columns: 45% 55%;
        align-items: start;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 2fr;
    }
}

@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);
    }

    #cookie-banner {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .cookie-btns {
        width: 100%;
    }
    
    .cookie-btn-accept, .cookie-btn-decline {
        flex: 1;
        text-align: center;
    }
}