/* Palette Name: burgundy-sand */
:root {
    --color-primary: #6B0F1A;
    --color-secondary: #7D1220;
    --color-accent: #A06830;
    --bg-tint: #FDF5F5;
    --text-dark: #2c2525;
    --text-light: #fefefe;
    --bg-white: #ffffff;
    --border-color: rgba(107, 15, 26, 0.15);
    --shadow-subtle: 0 2px 12px rgba(107, 15, 26, 0.07);
}

/* Base Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-tint);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1 {
    font-size: clamp(28px, 6vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    color: var(--color-primary);
    margin-bottom: 20px;
}

h2 {
    font-size: clamp(24px, 4vw, 38px);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-primary);
    margin-bottom: 16px;
}

h3 {
    font-size: clamp(18px, 3vw, 24px);
    font-weight: 600;
    color: var(--color-secondary);
    margin-bottom: 12px;
}

p {
    font-size: clamp(14px, 4vw, 17px);
    margin-bottom: 16px;
    color: #4a3f3f;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--color-accent);
}

/* Header Layout */
.site-header {
    position: relative;
    width: 100%;
    padding: 15px 10px;
    background-color: var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    z-index: 1000;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

/* Logo - always left */
.logo {
    font-size: 26px;
    font-weight: 800;
    color: var(--color-primary);
    z-index: 100;
    letter-spacing: -0.5px;
}

/* Hamburger - ALWAYS RIGHT */
.hamburger {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 24px;
    cursor: pointer;
    z-index: 100;
    display: none; /* Desktop hidden */
}

.hamburger .line {
    width: 100%;
    height: 3px;
    background-color: var(--color-primary);
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.menu-checkbox {
    display: none;
}

/* Desktop Navigation */
.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: 600;
    font-size: 15px;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Mobile Navigation */
.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(--bg-white);
    box-shadow: var(--shadow-subtle);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
    margin: 0;
}

.mobile-nav li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(107,15,26,0.08);
}

.mobile-nav a {
    font-weight: 600;
    font-size: 16px;
    color: var(--color-secondary);
    display: block;
}

/* Buttons */
.btn-primary {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--text-light);
    padding: 14px 28px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
    box-shadow: var(--shadow-subtle);
}

.btn-primary:hover {
    background-color: var(--color-secondary);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-secondary-outline {
    display: inline-block;
    background-color: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    padding: 12px 26px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s, color 0.3s;
}

.btn-secondary-outline:hover {
    background-color: var(--color-primary);
    color: var(--text-light);
}

.btn-accent-filled {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--text-light);
    padding: 14px 32px;
    font-weight: 700;
    border-radius: 8px;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-accent-filled:hover {
    background-color: var(--color-primary);
    color: var(--text-light);
    transform: translateY(-2px);
}

/* Hero Section: gradient-center */
.hero-gradient-center {
    position: relative;
    background: radial-gradient(circle, var(--color-secondary) 0%, var(--color-primary) 100%);
    color: var(--text-light);
    padding: 80px 16px;
    text-align: center;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-tech-decoration-1 {
    position: absolute;
    width: 300px;
    height: 300px;
    border: 2px solid rgba(160, 104, 48, 0.15);
    border-radius: 50%;
    top: -100px;
    left: -100px;
    pointer-events: none;
}

.hero-tech-decoration-2 {
    position: absolute;
    width: 400px;
    height: 400px;
    border: 1px dashed rgba(160, 104, 48, 0.15);
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    bottom: -150px;
    right: -100px;
    pointer-events: none;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 10;
}

.hero-badge {
    display: inline-block;
    background-color: var(--color-accent);
    color: var(--text-light);
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.hero-content h1 {
    color: var(--text-light);
}

.hero-content p {
    color: rgba(254, 254, 254, 0.85);
    margin-bottom: 30px;
    font-size: clamp(15px, 4vw, 19px);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.hero-actions .btn-secondary-outline {
    border-color: var(--text-light);
    color: var(--text-light);
}

.hero-actions .btn-secondary-outline:hover {
    background-color: var(--text-light);
    color: var(--color-primary);
}

/* Sections Common headers */
.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 50px auto;
    padding: 0 16px;
}

.section-header-left {
    max-width: 700px;
    margin: 0 auto 40px auto;
    padding: 0 16px;
}

.section-subtitle {
    display: block;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--color-accent);
    font-weight: 700;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.section-title-tech {
    position: relative;
    display: inline-block;
}

.section-title-tech::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--color-accent);
}

.section-header-left .section-title-tech::after {
    left: 0;
    transform: none;
}

.section-desc {
    margin-top: 16px;
    font-size: 16px;
}

/* SECTION 1: benefits-hscroll */
.benefits-hscroll-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.hscroll-wrapper {
    width: 100%;
    overflow-x: auto;
    padding: 20px 16px;
    -webkit-overflow-scrolling: touch;
}

.hscroll-container {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    justify-content: center;
    
}

.benefit-card-tech {
    width: 290px;
    background-color: var(--bg-tint);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 24px;
    box-shadow: var(--shadow-subtle);
    transition: transform 0.3s;
}

.benefit-card-tech:hover {
    transform: translateY(-5px);
}

.card-icon-wrapper {
    width: 50px;
    height: 50px;
    background-color: var(--color-primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 20px;
}

.benefit-card-tech h3 {
    margin-bottom: 12px;
}

.scroll-instruction {
    text-align: center;
    margin-top: 15px;
    font-size: 13px;
    color: var(--color-accent);
    font-weight: 600;
}

/* SECTION 2: accordion-faq */
.accordion-faq-section {
    padding: 80px 16px;
    background-color: var(--bg-tint);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 10px 20px;
    box-shadow: var(--shadow-subtle);
}

.faq-question {
    font-weight: 700;
    font-size: 16px;
    color: var(--color-primary);
    padding: 15px 0;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--color-accent);
}

.faq-item[open] .faq-question::after {
    content: '-';
}

.faq-answer {
    padding-bottom: 15px;
    border-top: 1px solid rgba(107,15,26,0.05);
    padding-top: 12px;
}

.faq-answer p {
    margin-bottom: 0;
}

/* SECTION 3: checklist-block */
.checklist-section {
    padding: 80px 16px;
    background-color: var(--bg-white);
}

.checklist-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.checklist-item {
    display: flex;
    gap: 16px;
    background-color: var(--bg-tint);
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--color-accent);
    box-shadow: var(--shadow-subtle);
    margin-bottom: 16px;
}

.check-icon {
    font-size: 20px;
    color: var(--color-accent);
    font-weight: bold;
    flex-shrink: 0;
}

.check-text h4 {
    font-size: 16px;
    color: var(--color-primary);
    margin-bottom: 6px;
    font-weight: 700;
}

.check-text p {
    margin-bottom: 0;
    font-size: 14px;
}

/* SECTION 4: expert-block */
.expert-section {
    padding: 80px 16px;
    background-color: var(--bg-tint);
}

.expert-card-wrapper {
    max-width: 950px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-subtle);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.expert-image-placeholder {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.expert-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.expert-text-content {
    padding: 40px 30px;
    position: relative;
}

.expert-quote-icon {
    font-size: 80px;
    line-height: 1;
    font-family: serif;
    color: rgba(160, 104, 48, 0.15);
    position: absolute;
    top: 10px;
    left: 20px;
}

.expert-quote {
    font-style: italic;
    font-size: clamp(15px, 3vw, 18px);
    line-height: 1.7;
    position: relative;
    z-index: 10;
    margin-bottom: 24px;
}

.expert-meta {
    display: flex;
    flex-direction: column;
}

.expert-name {
    font-weight: 700;
    color: var(--color-primary);
    font-size: 16px;
}

.expert-title {
    font-size: 13px;
    color: var(--color-accent);
    font-weight: 600;
}

/* SECTION 5: cta-banner */
.cta-banner-section {
    padding: 80px 16px;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--text-light);
    text-align: center;
}

.cta-banner-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-banner-content h2 {
    color: var(--text-light);
    margin-bottom: 16px;
}

.cta-banner-content p {
    color: rgba(254, 254, 254, 0.85);
    margin-bottom: 30px;
    font-size: 17px;
}

/* PROGRAM.HTML STYLES */
.page-title-section {
    padding: 80px 16px;
    background-color: var(--bg-white);
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.page-title-container {
    max-width: 800px;
    margin: 0 auto;
}

.page-subtitle {
    display: inline-block;
    background-color: var(--bg-tint);
    border: 1px solid var(--border-color);
    color: var(--color-primary);
    padding: 6px 14px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    margin-bottom: 16px;
}

.stats-section {
    padding: 40px 16px;
    background-color: var(--bg-tint);
}

.stats-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.stat-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: var(--shadow-subtle);
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.stat-label {
    margin-bottom: 0;
    font-size: 14px;
}

/* Tabs layout */
.tabs-section {
    padding: 80px 16px;
    background-color: var(--bg-white);
}

.tabs {
    max-width: 950px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
}

input[name="tabs"] {
    display: none;
}

.tab-panel {
    display: none;
    background-color: var(--bg-tint);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 40px 30px;
    box-shadow: var(--shadow-subtle);
}

.tabs-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.tabs-nav label {
    flex: 1;
    min-width: 140px;
    text-align: center;
    padding: 14px 10px;
    background-color: var(--bg-tint);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    cursor: pointer;
    font-weight: 700;
    font-size: 14px;
    color: var(--color-secondary);
    transition: all 0.3s ease;
}

.tabs-nav label:hover {
    background-color: rgba(160, 104, 48, 0.1);
}

#t1:checked ~ .tabs-nav label[for="t1"],
#t2:checked ~ .tabs-nav label[for="t2"],
#t3:checked ~ .tabs-nav label[for="t3"],
#t4:checked ~ .tabs-nav label[for="t4"] {
    background-color: var(--color-primary);
    color: var(--text-light);
    border-color: var(--color-primary);
}

#t1:checked ~ #p1,
#t2:checked ~ #p2,
#t3:checked ~ #p3,
#t4:checked ~ #p4 {
    display: block;
}

.tab-panel-content h3 {
    margin-bottom: 16px;
    border-bottom: 2px solid var(--color-accent);
    padding-bottom: 8px;
    display: inline-block;
}

/* Mid-image dynamic styling */
.program-image-block {
    position: relative;
    height: 400px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.program-mid-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

.program-image-overlay {
    position: relative;
    z-index: 2;
    background-color: rgba(107, 15, 26, 0.8);
    color: var(--text-light);
    padding: 40px;
    max-width: 700px;
    border-radius: 12px;
    text-align: center;
    margin: 0 16px;
}

.program-image-overlay p {
    color: var(--text-light);
    font-style: italic;
    font-size: 18px;
    margin-bottom: 0;
}

.program-cta {
    padding: 80px 16px;
    background-color: var(--bg-tint);
    text-align: center;
}

.program-cta-container {
    max-width: 700px;
    margin: 0 auto;
}

/* MISSION.HTML STYLES */
.mission-split-section {
    padding: 80px 16px;
    background-color: var(--bg-white);
}

.mission-split-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.mission-text-block h2 {
    margin-bottom: 20px;
}

.mission-image-block {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-subtle);
    height: 350px;
}

.mission-side-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Timeline vertical styling */
.timeline-section {
    padding: 80px 16px;
    background-color: var(--bg-tint);
}

.timeline-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 20px;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 35px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background-color: var(--color-accent);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 50px;
}

.timeline-badge {
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background-color: var(--color-primary);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    z-index: 10;
    border: 2px solid var(--text-light);
}

.timeline-content {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 24px;
    box-shadow: var(--shadow-subtle);
}

.timeline-content h3 {
    margin-bottom: 8px;
}

.timeline-content p {
    margin-bottom: 0;
}

/* Values section */
.values-section {
    padding: 80px 16px;
    background-color: var(--bg-white);
}

.values-grid {
    max-width: 1100px;
    margin: 40px auto 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.value-card {
    background-color: var(--bg-tint);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: var(--shadow-subtle);
}

.value-card h3 {
    color: var(--color-primary);
    margin-bottom: 12px;
}

.value-card p {
    margin-bottom: 0;
}

/* CONTACT.HTML STYLES */
.contact-split-section {
    padding: 80px 16px;
    background-color: var(--bg-tint);
}

.contact-split-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

.form-wrapper-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 20px;
    box-shadow: var(--shadow-subtle);
}

.form-wrapper-card h2 {
    margin-bottom: 8px;
}

.form-instruction-text {
    font-size: 14px;
    margin-bottom: 24px;
}

.custom-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group-tech {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group-tech label {
    font-size: 14px;
    font-weight: 700;
    color: var(--color-secondary);
}

.form-group-tech input,
.form-group-tech textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    background-color: var(--bg-tint);
    font-family: inherit;
    font-size: 15px;
    color: var(--text-dark);
}

.form-group-tech input:focus,
.form-group-tech textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    background-color: var(--bg-white);
}

.btn-primary-block {
    width: 100%;
    background-color: var(--color-primary);
    color: var(--text-light);
    border: none;
    padding: 14px;
    font-weight: 700;
    font-size: 16px;
    border-radius: 8px;
    cursor: pointer;
    box-shadow: var(--shadow-subtle);
    transition: background-color 0.3s;
}

.btn-primary-block:hover {
    background-color: var(--color-secondary);
}

.details-card-tech,
.hours-card-tech {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: var(--shadow-subtle);
    margin-bottom: 24px;
}

.details-intro {
    font-size: 14px;
    margin-bottom: 24px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.info-item-tech {
    display: flex;
    gap: 16px;
}

.info-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.info-text strong {
    display: block;
    font-size: 14px;
    color: var(--color-primary);
}

.info-text p {
    margin-bottom: 0;
    font-size: 14px;
}

.contact-link {
    color: var(--color-accent);
    font-weight: 600;
}

.hours-list {
    list-style: none;
    padding: 0;
    margin: 16px 0 0 0;
}

.hours-list li {
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px dashed var(--border-color);
}

.hours-list li:last-child {
    border-bottom: none;
}

/* LEGAL PAGES STYLES */
.legal-page-main {
    padding: 60px 16px;
    background-color: var(--bg-tint);
}

.legal-container {
    max-width: 850px;
    margin: 0 auto;
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 24px;
    box-shadow: var(--shadow-subtle);
}

.legal-date {
    font-style: italic;
    font-size: 14px;
    margin-bottom: 30px;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 15px;
}

.legal-content-block {
    margin-bottom: 30px;
}

.legal-content-block h2 {
    font-size: 20px;
    color: var(--color-primary);
    margin-bottom: 12px;
}

.legal-content-block ul {
    padding-left: 20px;
    margin-bottom: 16px;
}

.legal-content-block li {
    margin-bottom: 8px;
    font-size: 15px;
}

.legal-disclaimer-box {
    background-color: var(--bg-tint);
    border-left: 4px solid var(--color-primary);
    padding: 20px;
    border-radius: 0 8px 8px 0;
}

/* THANK PAGE STYLES */
.thank-page-main {
    padding: 80px 16px;
    background-color: var(--bg-tint);
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 70vh;
}

.thank-container {
    max-width: 650px;
    width: 100%;
}

.thank-card {
    background-color: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 24px;
    text-align: center;
    box-shadow: var(--shadow-subtle);
}

.thank-icon-circle {
    width: 70px;
    height: 70px;
    background-color: var(--color-accent);
    color: var(--text-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    margin: 0 auto 24px auto;
}

.thank-next-steps {
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
    text-align: left;
}

.thank-next-steps h3 {
    font-size: 18px;
    color: var(--color-primary);
    margin-bottom: 12px;
    text-align: center;
}

.thank-links-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 20px;
}

.thank-link-btn {
    display: block;
    text-align: center;
    background-color: var(--bg-tint);
    border: 1px solid var(--border-color);
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    color: var(--color-primary);
    transition: all 0.3s;
}

.thank-link-btn:hover {
    background-color: var(--color-primary);
    color: var(--text-light);
}

/* FOOTER STYLES */
.site-footer {
    background-color: var(--color-secondary) !important;
    color: var(--text-light) !important;
    padding: 60px 16px 20px 16px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    border-bottom: 1px solid rgba(254, 254, 254, 0.15);
    padding-bottom: 40px;
}

.footer-brand-column .footer-logo {
    font-size: 28px;
    font-weight: 800;
    color: var(--text-light) !important;
    display: inline-block;
    margin-bottom: 16px;
}

.footer-brand-desc {
    color: rgba(254, 254, 254, 0.75) !important;
    font-size: 14px;
    margin-bottom: 0;
}

.footer-grid h4 {
    color: var(--text-light) !important;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.footer-links-column ul,
.footer-legal-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-column li,
.footer-legal-column li {
    margin-bottom: 12px;
}

.footer-links-column a,
.footer-legal-column a {
    color: rgba(254, 254, 254, 0.75) !important;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-links-column a:hover,
.footer-legal-column a:hover {
    color: var(--color-accent) !important;
}

.footer-contact-column p {
    color: rgba(254, 254, 254, 0.75) !important;
    font-size: 14px;
    margin-bottom: 12px;
}

.footer-phone, .footer-email {
    color: rgba(254, 254, 254, 0.75) !important;
    font-weight: bold;
}

.footer-phone:hover, .footer-email:hover {
    color: var(--color-accent) !important;
}

.footer-bottom {
    padding-top: 20px;
    text-align: center;
}

.footer-bottom p {
    color: rgba(254, 254, 254, 0.5) !important;
    font-size: 12px;
    margin-bottom: 0;
}

/* 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(--bg-white);
    border-top: 2px solid var(--color-accent);
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
}

#cookie-banner.hidden {
    transform: translateY(110%);
}

#cookie-banner p {
    margin: 0;
    flex: 1;
    min-width: 200px;
    font-size: 13px;
    color: var(--text-dark);
}

#cookie-banner a {
    color: var(--color-primary);
    text-decoration: underline;
    font-weight: bold;
}

.cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.cookie-btn-accept {
    background-color: var(--color-primary);
    color: var(--text-light);
    border: none;
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
}

.cookie-btn-decline {
    background-color: transparent;
    color: var(--color-secondary);
    border: 1px solid var(--border-color);
    padding: 8px 18px;
    font-size: 13px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
}

/* MEDIA QUERIES (Mobile-First) */

/* Tablets and Up (768px) */
@media (min-width: 768px) {
    .site-header {
        padding: 20px 24px;
    }

    .hero-gradient-center {
        padding: 120px 24px;
    }

    .checklist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .expert-card-wrapper {
        flex-direction: row;
    }

    .expert-image-placeholder {
        width: 40%;
        height: auto;
        min-height: 350px;
    }

    .expert-text-content {
        width: 60%;
        padding: 50px;
    }

    .stats-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 32px;
    }

    .tabs-nav {
        flex-wrap: nowrap;
    }

    .mission-split-container {
        grid-template-columns: 1.2fr 0.8fr;
        align-items: center;
        gap: 60px;
    }

    .mission-image-block {
        height: 450px;
    }

    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-split-container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 48px;
    }

    .legal-container {
        padding: 50px 40px;
    }

    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .footer-brand-column {
        grid-column: span 2;
    }

    .footer-links-column,
    .footer-legal-column {
        grid-column: span 1;
    }

    .footer-contact-column {
        grid-column: span 4;
        margin-top: 20px;
    }
}

/* Desktops and Up (1024px) */
@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .footer-brand-column {
        grid-column: span 2;
    }

    .footer-links-column,
    .footer-legal-column,
    .footer-contact-column {
        grid-column: span 1;
    }

    .footer-contact-column {
        margin-top: 0;
    }

    .thank-links-grid {
        flex-direction: row;
    }

    .thank-link-btn {
        flex: 1;
    }
}

/* Mobile Adaptation for Navigation */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }

    .hamburger {
        display: block; /* Show hamburger on mobile */
    }

    .mobile-nav {
        display: block;
    }

    #menu-toggle:checked ~ .mobile-nav {
        max-height: 400px;
    }

    /* Hamburger animation */
    #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;
    }
}