/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 1200px;
    width: 100%;
}

.cookie-content p {
    margin: 0;
    text-align: center;
}

.cookie-actions {
    display: flex;
    gap: 1rem;
}

.btn-accept,
.btn-reject {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #27ae60;
    color: #ffffff;
}

.btn-accept:hover {
    background: #229954;
}

.btn-reject {
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-reject:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.75rem;
    font-weight: 700;
    color: #2c3e50;
}

.nav-menu {
    display: none;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu li a {
    color: #2c3e50;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: #3498db;
}

.nav-menu li a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    right: 0;
    height: 2px;
    background: #3498db;
}

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    padding: 0.5rem;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: #2c3e50;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Split-Screen Layout Foundation */
.hero-split,
.split-reverse,
.stats-split,
.services-preview,
.testimonial-split,
.method-split,
.cta-split-block,
.form-split,
.final-cta-split,
.about-hero-split,
.origin-split,
.mission-split,
.values-split,
.team-split,
.impact-split,
.approach-split,
.cta-about-split,
.services-hero-split,
.service-detail-split,
.enrollment-split,
.contact-hero-split,
.contact-info-split,
.contact-split-additional,
.faq-split,
.thanks-hero-split,
.next-steps-split,
.thanks-resources-split,
.thanks-cta-split {
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

/* Hero Section */
.hero-split {
    margin-top: 80px;
    min-height: 90vh;
}

.hero-left,
.hero-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2rem;
}

.hero-left {
    background: #f8f9fa;
}

.hero-content {
    max-width: 600px;
}

.hero-content h1 {
    font-size: 2.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.hero-content p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    color: #555;
}

.hero-right {
    background: #e8f4f8;
}

.hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Buttons and CTAs */
.cta-primary,
.cta-secondary,
.cta-link,
.cta-large {
    display: inline-block;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary {
    background: #3498db;
    color: #ffffff;
}

.cta-primary:hover {
    background: #2980b9;
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: #3498db;
    border: 2px solid #3498db;
    margin-left: 1rem;
}

.cta-secondary:hover {
    background: #3498db;
    color: #ffffff;
}

.cta-link {
    background: transparent;
    padding: 0.5rem 0;
    color: #3498db;
    font-weight: 600;
}

.cta-link:hover {
    color: #2980b9;
}

.cta-large {
    background: #27ae60;
    color: #ffffff;
    font-size: 1.25rem;
    padding: 1.25rem 3rem;
}

.cta-large:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(39, 174, 96, 0.3);
}

/* Split Reverse Pattern */
.split-reverse {
    flex-direction: column-reverse;
}

.split-image,
.split-content {
    flex: 1;
    padding: 3rem 2rem;
}

.split-image {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.split-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.split-content p {
    margin-bottom: 1.25rem;
    color: #555;
    font-size: 1.0625rem;
}

/* Stats Section */
.stats-split {
    background: #2c3e50;
    color: #ffffff;
}

.stats-content,
.stats-visual {
    flex: 1;
    padding: 3rem 2rem;
}

.stats-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stats-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

.stats-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat-item {
    text-align: left;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 1.125rem;
    line-height: 1.4;
}

.stats-visual {
    background: #34495e;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
}

/* Services Preview */
.services-preview {
    padding: 4rem 2rem;
    background: #f8f9fa;
}

.section-header-split {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.header-left h2 {
    font-size: 2.25rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.header-left p {
    font-size: 1.125rem;
    color: #555;
}

.services-split-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.service-content {
    padding: 2rem;
}

.service-content h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-content p {
    color: #555;
    margin-bottom: 1.5rem;
}

.price {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 1.5rem;
}

.btn-select-service {
    background: #3498db;
    color: #ffffff;
    padding: 0.875rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-select-service:hover {
    background: #2980b9;
}

/* Testimonials */
.testimonial-split {
    background: #ecf0f1;
}

.testimonial-left,
.testimonial-right {
    flex: 1;
    padding: 3rem 2rem;
}

.testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

blockquote {
    border-left: 4px solid #3498db;
    padding-left: 1.5rem;
}

blockquote p {
    font-size: 1.125rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
}

cite {
    font-style: normal;
    color: #7f8c8d;
    font-weight: 600;
}

.testimonial-right {
    background: #bdc3c7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Method Section */
.method-split {
    background: #ffffff;
}

.method-image,
.method-content {
    flex: 1;
    padding: 3rem 2rem;
}

.method-image {
    background: #d5e8f7;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.method-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto;
}

.method-content h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.pillar-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.pillar h4 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.pillar p {
    color: #555;
}

/* CTA Block */
.cta-split-block {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    padding: 5rem 2rem;
    text-align: center;
}

.cta-block-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-block-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.cta-block-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
}

/* Form Section */
.form-split {
    background: #f8f9fa;
}

.form-left,
.form-right {
    flex: 1;
    padding: 3rem 2rem;
}

.form-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.form-left h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.form-left p {
    color: #555;
    margin-bottom: 2rem;
}

.form-benefits {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.form-benefits li {
    padding-left: 1.75rem;
    position: relative;
    color: #555;
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.25rem;
}

.form-right {
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.enrollment-form {
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group select {
    padding: 0.875rem;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus {
    outline: none;
    border-color: #3498db;
}

.btn-submit {
    background: #27ae60;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1.125rem;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #229954;
    transform: translateY(-2px);
}

/* Final CTA */
.final-cta-split {
    background: #ffffff;
}

.final-left,
.final-right {
    flex: 1;
    padding: 3rem 2rem;
}

.final-left {
    background: #f0f8ff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.final-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.final-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.final-right h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.final-right p {
    color: #555;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* Footer */
.site-footer {
    background: #2c3e50;
    color: #ecf0f1;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-split {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-left h4 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.footer-left p {
    color: #bdc3c7;
    max-width: 400px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-column h5 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-column ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column ul li a {
    color: #bdc3c7;
    transition: color 0.3s ease;
}

.footer-column ul li a:hover {
    color: #3498db;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    text-align: center;
    color: #95a5a6;
}

/* Sticky CTA */
.sticky-cta {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #e74c3c;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.4);
    z-index: 900;
    transition: all 0.3s ease;
}

.sticky-cta:hover {
    background: #c0392b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.5);
}

/* Legal Pages */
.legal-header {
    margin-top: 80px;
    padding: 4rem 2rem 2rem;
    background: #f8f9fa;
    text-align: center;
}

.legal-header h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.legal-header p {
    color: #7f8c8d;
}

.legal-content {
    padding: 3rem 2rem;
    background: #ffffff;
}

.legal-container {
    max-width: 900px;
    margin: 0 auto;
}

.legal-container h2 {
    font-size: 1.75rem;
    color: #2c3e50;
    margin: 2.5rem 0 1rem;
}

.legal-container h3 {
    font-size: 1.375rem;
    color: #34495e;
    margin: 2rem 0 1rem;
}

.legal-container h4 {
    font-size: 1.125rem;
    color: #34495e;
    margin: 1.5rem 0 0.75rem;
}

.legal-container p {
    color: #555;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.legal-container ul {
    margin: 1rem 0 1.5rem 2rem;
    color: #555;
}

.legal-container li {
    margin-bottom: 0.5rem;
}

.legal-container a {
    color: #3498db;
    text-decoration: underline;
}

.legal-container a:hover {
    color: #2980b9;
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin: 1.5rem 0;
}

.cookie-table th,
.cookie-table td {
    padding: 1rem;
    text-align: left;
    border: 1px solid #e0e0e0;
}

.cookie-table th {
    background: #f8f9fa;
    font-weight: 600;
    color: #2c3e50;
}

.cookie-table td {
    color: #555;
}

/* Services Detail Pages */
.services-hero-split,
.service-detail-split {
    background: #ffffff;
}

.services-hero-left,
.services-hero-right,
.service-detail-image,
.service-detail-content {
    flex: 1;
    padding: 3rem 2rem;
}

.services-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto;
}

.services-hero-left h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.services-hero-right {
    background: #e8f5e9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.services-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-split {
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-split.reverse {
    flex-direction: column-reverse;
}

.service-detail-image {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto;
}

.service-detail-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.service-detail-content > p {
    color: #555;
    margin-bottom: 1.5rem;
    font-size: 1.0625rem;
}

.service-features {
    margin: 2rem 0;
}

.service-features h4 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.service-features li {
    padding-left: 1.75rem;
    position: relative;
    color: #555;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
    font-size: 1.125rem;
}

.service-pricing {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 2rem 0;
}

.price-label {
    font-size: 1.125rem;
    color: #7f8c8d;
}

.price-amount {
    font-size: 2.25rem;
    font-weight: 700;
    color: #27ae60;
}

/* Enrollment Section */
.enrollment-split {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.enrollment-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.enrollment-left h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.enrollment-left > p {
    color: #555;
    margin-bottom: 2rem;
}

.enrollment-benefits {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.benefit-item h4 {
    font-size: 1.125rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.benefit-item p {
    color: #555;
}

.enrollment-right {
    flex: 1;
    background: #ffffff;
    padding: 3rem 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Testimonials Grid */
.testimonials-services {
    padding: 4rem 2rem;
    background: #ffffff;
    text-align: center;
}

.testimonials-services h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 3rem;
}

.testimonials-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #3498db;
}

.testimonial-card p {
    font-size: 1.0625rem;
    font-style: italic;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.testimonial-card cite {
    font-style: normal;
    color: #7f8c8d;
    font-weight: 600;
}

/* Contact Page */
.contact-hero-split,
.contact-info-split {
    background: #ffffff;
}

.contact-hero-left,
.contact-hero-right {
    flex: 1;
    padding: 3rem 2rem;
}

.contact-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.contact-hero-left h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-hero-left p {
    color: #555;
    font-size: 1.125rem;
}

.contact-hero-right {
    background: #ffe8e8;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.contact-info-left,
.contact-info-right {
    flex: 1;
    padding: 3rem 2rem;
}

.contact-info-left {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.info-block h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.info-block p {
    color: #555;
    line-height: 1.7;
}

.info-block a {
    color: #3498db;
    text-decoration: underline;
}

.info-block a:hover {
    color: #2980b9;
}

.contact-info-right {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-info-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact Additional */
.contact-split-additional {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.additional-left,
.additional-right {
    flex: 1;
}

.additional-left {
    max-width: 650px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.additional-left h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.process-step {
    display: flex;
    gap: 1.5rem;
}

.step-number {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #3498db;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
}

.step-content h4 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #555;
}

.additional-right {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-cta-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.contact-cta-box h3 {
    font-size: 1.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.contact-cta-box p {
    color: #555;
    margin-bottom: 1.5rem;
}

/* FAQ Section */
.faq-split {
    padding: 4rem 2rem;
    background: #ffffff;
}

.faq-header {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-header h2 {
    font-size: 2rem;
    color: #2c3e50;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h4 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.faq-item p {
    color: #555;
    line-height: 1.7;
}

/* Thanks Page */
.thanks-hero-split {
    margin-top: 80px;
    background: #f0f8ff;
}

.thanks-hero-left,
.thanks-hero-right {
    flex: 1;
    padding: 3rem 2rem;
}

.thanks-hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.thanks-hero-left h1 {
    font-size: 2.5rem;
    color: #27ae60;
    margin-bottom: 1rem;
}

.thanks-hero-left p {
    color: #555;
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
}

.thanks-service-info {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #27ae60;
    margin-top: 1rem;
}

.thanks-hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-hero-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Next Steps */
.next-steps-split {
    background: #ffffff;
    padding: 4rem 2rem;
}

.next-steps-content,
.next-steps-image {
    flex: 1;
}

.next-steps-content {
    max-width: 700px;
    margin: 0 auto;
    margin-bottom: 3rem;
}

.next-steps-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.steps-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.step-item {
    display: flex;
    gap: 1.5rem;
}

.step-icon {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background: #e8f4f8;
    color: #3498db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    font-weight: 700;
}

.step-text h3 {
    font-size: 1.375rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.step-text p {
    color: #555;
    line-height: 1.7;
}

.next-steps-image {
    background: #f0f0f0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.next-steps-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Thanks Resources */
.thanks-resources-split {
    background: #f8f9fa;
    padding: 4rem 2rem;
}

.resources-left,
.resources-right {
    flex: 1;
}

.resources-left {
    max-width: 600px;
    margin: 0 auto;
    margin-bottom: 2rem;
}

.resources-left h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.resources-left p {
    color: #555;
}

.resources-right {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.resource-card {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.resource-card h4 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.resource-card p {
    color: #555;
    margin-bottom: 1rem;
}

.resource-link {
    color: #3498db;
    font-weight: 600;
    transition: color 0.3s ease;
}

.resource-link:hover {
    color: #2980b9;
}

/* Thanks CTA */
.thanks-cta-split {
    background: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.thanks-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.thanks-cta-content h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.thanks-cta-content p {
    color: #555;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

/* About Page Specific */
.about-hero-split {
    margin-top: 80px;
    background: #f8f9fa;
}

.about-hero-content,
.about-hero-image {
    flex: 1;
    padding: 3rem 2rem;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
    margin: 0 auto;
}

.about-hero-content h1 {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.about-hero-content p {
    color: #555;
    font-size: 1.125rem;
}

.about-hero-image {
    background: #e0f2f1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.origin-split,
.mission-split,
.values-split,
.impact-split,
.approach-split {
    background: #ffffff;
}

.origin-left,
.origin-right,
.mission-content,
.mission-image,
.values-image,
.values-content,
.impact-content,
.impact-image,
.approach-left,
.approach-right {
    flex: 1;
    padding: 3rem 2rem;
}

.origin-left,
.mission-image,
.values-image,
.impact-image,
.approach-left {
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.origin-left img,
.mission-image img,
.values-image img,
.impact-image img,
.approach-left img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.origin-right,
.mission-content,
.values-content,
.impact-content,
.approach-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 650px;
    margin: 0 auto;
}

.origin-right h2,
.mission-content h2,
.values-content h2,
.impact-content h2,
.approach-right h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.origin-right p,
.mission-content p,
.approach-right p {
    color: #555;
    margin-bottom: 1.25rem;
}

.value-item {
    margin-bottom: 2rem;
}

.value-item h4 {
    font-size: 1.25rem;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.value-item p {
    color: #555;
}

/* Team Section */
.team-split {
    padding: 4rem 2rem;
    background: #f8f9fa;
    flex-direction: column;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.team-header p {
    color: #555;
    font-size: 1.125rem;
}

.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.team-member {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.team-member img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.team-member h4 {
    font-size: 1.25rem;
    color: #2c3e50;
    padding: 1.5rem 1.5rem 0.5rem;
}

.team-member p {
    color: #555;
    padding: 0 1.5rem 1.5rem;
}

/* Impact Stats */
.impact-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.impact-item {
    text-align: left;
}

.impact-number {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 0.5rem;
}

.impact-item p {
    font-size: 1.125rem;
    color: #555;
}

/* CTA About */
.cta-about-split {
    padding: 4rem 2rem;
    background: linear-gradient(135deg, #3498db 0%, #2c3e50 100%);
    color: #ffffff;
    text-align: center;
}

.cta-about-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-about-content h2 {
    font-size: 2.25rem;
    margin-bottom: 1.5rem;
}

.cta-about-content p {
    font-size: 1.125rem;
    margin-bottom: 2.5rem;
}

/* Tablet Breakpoint */
@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }

    .nav-toggle {
        display: none;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .cookie-content p {
        text-align: left;
    }

    .hero-split,
    .split-reverse,
    .stats-split,
    .testimonial-split,
    .method-split,
    .form-split,
    .final-cta-split,
    .about-hero-split,
    .origin-split,
    .mission-split,
    .values-split,
    .impact-split,
    .approach-split,
    .services-hero-split,
    .service-detail-split,
    .enrollment-split,
    .contact-hero-split,
    .contact-info-split,
    .thanks-hero-split,
    .next-steps-split {
        flex-direction: row;
    }

    .split-reverse,
    .service-detail-split.reverse {
        flex-direction: row-reverse;
    }

    .section-header-split {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .services-split-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .stats-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .footer-split {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-links {
        flex-direction: row;
        gap: 4rem;
    }

    .testimonials-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .testimonial-card {
        flex: 1 1 calc(50% - 1rem);
    }

    .faq-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .faq-item {
        flex: 1 1 calc(50% - 1rem);
    }

    .team-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .team-member {
        flex: 1 1 calc(33.333% - 1.5rem);
    }

    .contact-split-additional {
        flex-direction: row;
    }

    .additional-left {
        margin-bottom: 0;
    }

    .thanks-resources-split {
        flex-direction: row;
    }

    .resources-left {
        margin-bottom: 0;
    }

    .resources-right {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .resource-card {
        flex: 1 1 calc(50% - 1rem);
    }
}

/* Desktop Breakpoint */
@media (min-width: 1024px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .services-split-grid {
        flex-wrap: nowrap;
    }

    .service-card {
        flex: 1 1 25%;
    }

    .testimonials-grid {
        flex-wrap: nowrap;
    }

    .testimonial-card {
        flex: 1 1 33.333%;
    }

    .team-grid {
        flex-wrap: nowrap;
    }

    .resources-right {
        flex-wrap: nowrap;
    }

    .resource-card {
        flex: 1 1 33.333%;
    }
}