/* #935116, #0C0F24, #F0A55A, #FEF8EE */
:root {
    --color-primary: #935116;
    --color-secondary: #0C0F24;
    --color-accent: #F0A55A;
    --bg-tint: #FEF8EE;
    --color-text-dark: #1F2421;
    --color-text-light: #FEF8EE;
    --color-white: #FFFFFF;
    --transition-speed: 0.3s;
}

/* Base Styles & Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--color-text-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Layout Containers */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 60px 0;
}

@media (min-width: 768px) {
    .section-padding {
        padding: 100px 0;
    }
}

/* Corporate Clean Guidelines: Table-like grids, explicit spacing */
.text-center {
    text-align: center;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background-color: var(--color-primary);
    color: var(--color-white);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 8px; /* Rounded border-style config */
    margin-bottom: 20px;
}

h1, h2, h3, h4 {
    color: var(--color-secondary);
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(32px, 5vw, 56px);
    margin-bottom: 24px;
}

h2 {
    font-size: clamp(26px, 4vw, 40px);
    margin-bottom: 20px;
}

h3 {
    font-size: clamp(20px, 3vw, 24px);
    margin-bottom: 15px;
}

p {
    margin-bottom: 20px;
    font-size: clamp(15px, 2vw, 17px);
}

/* Mixed Color Mode Alternating Backgrounds */
.dark-section {
    background-color: var(--color-secondary);
    color: var(--color-text-light);
}

.sub-hero.dark-section h1 {
    color: var(--color-white);
}

.dark-section h2, .dark-section h3, .dark-section h4 {
    color: var(--color-white);
}

.light-section {
    background-color: var(--bg-tint);
    color: var(--color-text-dark);
}

.section-header {
    max-width: 800px;
    margin: 0 auto 60px auto;
}

.section-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

/* Buttons (Rounded Style, Dramatic Shadow) */
.btn {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    transition: all var(--transition-speed) ease;
    border-radius: 8px; /* Rounded config */
    text-align: center;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 10px 30px rgba(147, 81, 22, 0.3);
}

.btn-primary:hover {
    background-color: var(--color-accent);
    color: var(--color-secondary);
    box-shadow: 0 15px 40px rgba(240, 165, 90, 0.4);
    transform: translateY(-3px);
}

.btn-secondary {
    background-color: transparent;
    color: var(--color-white);
    border-color: var(--color-white);
}

.btn-secondary:hover {
    background-color: var(--color-white);
    color: var(--color-secondary);
    transform: translateY(-3px);
}

.btn-accent {
    background-color: var(--color-accent);
    color: var(--color-secondary);
    box-shadow: 0 10px 30px rgba(240, 165, 90, 0.3);
}

.btn-accent:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: 0 15px 40px rgba(147, 81, 22, 0.4);
    transform: translateY(-3px);
}

.btn-block {
    display: block;
    width: 100%;
}

/* Header & Hamburger */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--color-secondary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    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: 700;
    color: var(--color-white);
    text-decoration: none;
    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;
    background-color: var(--color-white);
    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 .nav-list a {
    color: var(--color-text-light);
    text-decoration: none;
    font-weight: 600;
    transition: color var(--transition-speed);
}

.desktop-nav .nav-list a:hover {
    color: var(--color-accent);
}

.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-secondary);
}

.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);
    text-decoration: none;
    font-weight: 600;
    display: block;
}

@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 Diagonal Split Layout */
.hero-diagonal {
    background-color: var(--color-secondary);
    color: var(--color-white);
    position: relative;
    overflow: hidden;
    padding: 60px 0;
}

.hero-diagonal .logo {
    color: var(--color-white);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.hero-text-side {
    z-index: 2;
}

.hero-text-side h1 {
    color: var(--color-white);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 30px;
}

.hero-image-side {
    position: relative;
    width: 100%;
    height: 300px;
}

.hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .hero-diagonal {
        padding: 120px 0;
    }

    .hero-container {
        flex-direction: row;
        align-items: center;
    }

    .hero-text-side {
        flex: 1;
        max-width: 50%;
    }

    .hero-image-side {
        flex: 1;
        height: 500px;
        clip-path: polygon(10% 0, 100% 0, 100% 100%, 0 100%);
    }

    .hero-img {
        border-radius: 0;
    }
}

/* Index Section 1: Benefits 2x2 Grid */
.grid-2x2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .grid-2x2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

.benefit-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px; /* Rounded config */
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.22); /* Dramatic Shadow */
    transition: transform var(--transition-speed), box-shadow var(--transition-speed);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 32px 80px rgba(0, 0, 0, 0.3);
}

.card-icon {
    font-size: 36px;
    font-weight: 700;
    color: var(--color-accent);
    margin-bottom: 20px;
}

/* Index Section 2: Expert Block */
.expert-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    background-color: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15); /* Dramatic Shadow */
}

@media (min-width: 768px) {
    .expert-wrapper {
        flex-direction: row;
        align-items: center;
    }
}

.expert-image-container {
    flex: 1;
    height: 400px;
}

.expert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-content {
    flex: 1.2;
    padding: 40px;
}

@media (min-width: 768px) {
    .expert-content {
        padding: 60px;
    }
}

.expert-tag {
    color: var(--color-primary);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.expert-quote {
    font-size: clamp(18px, 2.5vw, 24px);
    font-style: italic;
    color: var(--color-secondary);
    margin-bottom: 30px;
    position: relative;
}

.expert-meta h4 {
    margin-bottom: 5px;
}

.expert-meta p {
    margin-bottom: 0;
    font-size: 14px;
    color: #666;
}

/* Index Section 3: Accordion FAQ */
.faq-accordion-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
}

.faq-question {
    padding: 20px;
    font-weight: 600;
    cursor: pointer;
    user-select: none;
    outline: none;
    color: var(--color-white);
}

.faq-answer {
    padding: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(0, 0, 0, 0.2);
}

.faq-answer p {
    margin-bottom: 0;
}

/* Index Section 4: Testimonials */
.testimonials-vertical-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-card {
    background-color: var(--color-white);
    border-left: 5px solid var(--color-primary);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    color: var(--color-accent);
    margin-bottom: 15px;
    font-size: 18px;
}

.testimonial-text {
    font-style: italic;
    font-size: 17px;
}

.testimonial-author {
    margin-top: 20px;
}

.testimonial-author strong {
    display: block;
    color: var(--color-secondary);
}

.testimonial-author span {
    font-size: 13px;
    color: #666;
}

/* Index Section 5: Checklist Block */
.checklist-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.checklist-item {
    display: flex;
    gap: 20px;
    background-color: rgba(255, 255, 255, 0.03);
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.checkmark {
    font-size: 24px;
    color: var(--color-accent);
    font-weight: bold;
}

.section-cta {
    margin-top: 50px;
}

/* Program Page: Numbered Sections Layout */
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .grid-2-cols {
        grid-template-columns: repeat(2, 1fr);
    }
}

.rounded-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.2);
}

.numbered-list {
    display: flex;
    flex-direction: column;
    gap: 60px;
    margin-top: 60px;
}

.numbered-row {
    display: flex;
    flex-direction: column;
    gap: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 40px;
}

@media (min-width: 768px) {
    .numbered-row {
        flex-direction: row;
        gap: 40px;
    }
}

.num-col {
    font-size: 64px;
    font-weight: 800;
    color: var(--color-accent);
    line-height: 1;
}

.content-col {
    flex: 1;
}

.bullet-list {
    list-style-type: none;
    margin-top: 20px;
}

.bullet-list li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
}

.bullet-list li::before {
    content: "•";
    color: var(--color-accent);
    font-size: 20px;
    position: absolute;
    left: 0;
    top: -2px;
}

/* Mission Page: Grid Values Layout */
.grid-3-cols {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

@media (min-width: 768px) {
    .grid-3-cols {
        grid-template-columns: repeat(3, 1fr);
    }
}

.value-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
}

.value-icon {
    font-size: 40px;
    margin-bottom: 20px;
}

.manifesto-box {
    background-color: var(--color-white);
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.15);
    max-width: 900px;
    margin: 0 auto;
}

.manifesto-lead {
    font-size: 22px;
    font-style: italic;
    color: var(--color-primary);
    margin-bottom: 40px;
}

.manifesto-points {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.manifesto-points p {
    margin-bottom: 24px;
    border-bottom: 1px solid #EEE;
    padding-bottom: 15px;
}

/* Contact Page Layout */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
}

@media (min-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1.5fr 1fr;
    }
}

.contact-form {
    margin-top: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--color-secondary);
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid #CCC;
    border-radius: 8px;
    font-size: 16px;
    background-color: var(--color-white);
    outline: none;
    transition: border-color var(--transition-speed);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--color-primary);
}

.info-card, .schedule-card {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

.info-intro {
    font-size: 15px;
    color: #666;
    margin-bottom: 30px;
}

.info-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.info-item {
    display: flex;
    gap: 16px;
}

.info-icon {
    font-size: 24px;
}

.accent-link {
    color: var(--color-primary);
    text-decoration: none;
    font-weight: 600;
}

.accent-link:hover {
    text-decoration: underline;
}

.schedule-list {
    list-style: none;
}

.schedule-list li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid #EEE;
}

/* Legal Pages Styling */
.legal-container {
    max-width: 800px;
    margin: 0 auto;
}

.legal-date {
    font-style: italic;
    color: #666;
    margin-bottom: 40px;
}

.legal-section-block {
    margin-bottom: 40px;
}

.disclaimer-box {
    background-color: #FFF3CD;
    border-left: 5px solid #FFC107;
    padding: 24px;
    border-radius: 8px;
    margin-bottom: 40px;
}

.disclaimer-box h3 {
    color: #856404;
    margin-bottom: 10px;
}

/* Thank You Page Styling */
.thank-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 40px 20px;
}

.success-icon {
    width: 80px;
    height: 80px;
    background-color: #D4EDDA;
    color: #28A745;
    font-size: 40px;
    line-height: 80px;
    border-radius: 50%;
    margin: 0 auto 30px auto;
}

.thank-lead {
    font-size: 20px;
    margin-bottom: 40px;
}

.next-steps-box {
    background-color: var(--color-white);
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.08);
    text-align: left;
    margin-bottom: 40px;
}

.next-steps-box h3 {
    margin-bottom: 24px;
}

.step-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.step-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.step-num {
    background-color: var(--color-primary);
    color: var(--color-white);
    width: 30px;
    height: 30px;
    border-radius: 50%;
    text-align: center;
    line-height: 30px;
    font-weight: 700;
    flex-shrink: 0;
}

.thank-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 20px;
}

/* Footer Styling (Strict rules) */
.site-footer {
    background-color: var(--color-secondary) !important;
    color: var(--color-text-light) !important;
    padding: 60px 0 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    }
}

.footer-logo {
    display: inline-block;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 14px;
    opacity: 0.8;
}

.footer-col h4 {
    color: var(--color-white) !important;
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--color-text-light) !important;
    text-decoration: none;
    font-size: 14px;
    transition: color var(--transition-speed);
}

.footer-links a:hover {
    color: var(--color-accent) !important;
}

.footer-col p {
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-phone, .footer-email {
    color: var(--color-accent) !important;
    text-decoration: none;
    font-weight: 600;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 12px;
    opacity: 0.6;
    margin-bottom: 0;
}

/* Cookie Banner Styling */
#cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    padding: 18px 24px;
    background-color: var(--color-secondary);
    color: var(--color-white);
    border-top: 2px solid var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    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(--color-accent);
    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: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: background-color var(--transition-speed);
}

.cookie-btn-accept {
    background-color: var(--color-accent);
    color: var(--color-secondary);
}

.cookie-btn-accept:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--color-white);
    border: 1px solid var(--color-white);
}

.cookie-btn-decline:hover {
    background-color: var(--color-white);
    color: var(--color-secondary);
}

@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;
    }
}