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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background-color: #ffffff;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

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

/* Cookie Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.25rem;
    z-index: 10000;
    display: none;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

.cookie-banner.active {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-content p {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.5;
}

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

.btn-cookie-accept,
.btn-cookie-reject {
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

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

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

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

/* Navigation */
.main-nav {
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
}

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

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

.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

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

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    border-bottom: 1px solid #f5f5f5;
}

.nav-menu a {
    display: block;
    padding: 1rem 1.5rem;
    color: #2c3e50;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.nav-menu a:hover {
    background-color: #f8f9fa;
    color: #27ae60;
}

/* Split-Screen Hero */
.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

.hero-left {
    padding: 3rem 1.5rem;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-left h1 {
    font-size: 2.25rem;
    line-height: 1.2;
    margin-bottom: 1.25rem;
    color: #2c3e50;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 2rem;
    color: #555;
}

.hero-right {
    min-height: 350px;
    overflow: hidden;
}

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

/* Stat Strip */
.stat-strip {
    display: flex;
    flex-direction: column;
    background-color: #2c3e50;
    color: #ffffff;
}

.stat-item {
    padding: 2rem 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-item:last-child {
    border-bottom: none;
}

.stat-item h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #27ae60;
}

.stat-item p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Approach Split Section */
.approach-split {
    display: flex;
    flex-direction: column;
}

.approach-left {
    padding: 3rem 1.5rem;
    background-color: #ffffff;
}

.approach-right {
    min-height: 350px;
    overflow: hidden;
}

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

.approach-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.approach-left p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #555;
}

/* Programs Showcase */
.programs-showcase {
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

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

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

.header-right p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.programs-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.program-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}

.program-card.featured {
    border: 2px solid #27ae60;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #27ae60;
    color: #ffffff;
    padding: 0.4rem 0.9rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 10;
}

.program-header {
    padding: 1.75rem 1.5rem 1rem;
    border-bottom: 1px solid #f0f0f0;
}

.program-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.program-body {
    padding: 1.5rem;
}

.program-body > p {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.25rem;
    color: #555;
}

.program-features {
    margin-bottom: 1.5rem;
}

.program-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    color: #555;
}

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

.btn-select-service {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background-color: #27ae60;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
}

.btn-select-service:hover {
    background-color: #229954;
}

/* Testimonial Split */
.testimonial-split {
    display: flex;
    flex-direction: column;
}

.testimonial-left,
.testimonial-right {
    padding: 3rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-left {
    background-color: #ecf0f1;
}

.testimonial-right {
    background-color: #d5dbdb;
}

.testimonial-content {
    max-width: 500px;
}

.testimonial-content blockquote {
    font-size: 1.15rem;
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.testimonial-content cite {
    font-size: 1rem;
    font-style: normal;
    font-weight: 600;
    color: #555;
}

/* Process Split */
.process-split {
    display: flex;
    flex-direction: column;
}

.process-left {
    padding: 3rem 1.5rem;
    background-color: #ffffff;
}

.process-right {
    min-height: 400px;
    overflow: hidden;
}

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

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

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

.step {
    display: flex;
    gap: 1.25rem;
}

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

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

.step-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* CTA Full Split */
.cta-full-split {
    display: flex;
    flex-direction: column;
    background-color: #27ae60;
    color: #ffffff;
}

.cta-content-left {
    padding: 3rem 1.5rem;
}

.cta-content-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content-left p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

.cta-content-right {
    padding: 2rem 1.5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Buttons and CTAs */
.cta-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #2c3e50;
    color: #ffffff;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s ease;
    text-align: center;
}

.cta-primary:hover {
    background-color: #1a252f;
}

.cta-secondary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background-color: #ffffff;
    color: #27ae60;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: center;
}

.cta-secondary:hover {
    background-color: #f8f9fa;
}

.cta-link {
    color: #27ae60;
    font-weight: 600;
    display: inline-block;
    margin-top: 1rem;
    font-size: 1.05rem;
    transition: color 0.3s ease;
}

.cta-link:hover {
    color: #229954;
}

.cta-text {
    color: #ffffff;
    opacity: 0.9;
    text-align: center;
    font-size: 1rem;
    transition: opacity 0.3s ease;
}

.cta-text:hover {
    opacity: 1;
}

/* Form Section Split */
.form-section-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

.form-left {
    margin-bottom: 2rem;
}

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

.form-left p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.benefit-item svg {
    flex-shrink: 0;
    color: #27ae60;
}

.benefit-item span {
    font-size: 1rem;
    color: #555;
}

.enrollment-form {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #2c3e50;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #27ae60;
}

.form-group textarea {
    resize: vertical;
}

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

.btn-submit:hover {
    background-color: #229954;
}

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

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

.footer-left h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.footer-left p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

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

.footer-column h4 {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

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

.footer-column a {
    font-size: 0.95rem;
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.footer-column a:hover {
    opacity: 1;
}

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

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.7;
}

/* Page Hero Split */
.page-hero-split {
    display: flex;
    flex-direction: column;
    min-height: 350px;
}

.page-hero-split .hero-left {
    background-color: #27ae60;
    color: #ffffff;
}

.page-hero-split .hero-left h1 {
    color: #ffffff;
}

.page-hero-split .hero-left p {
    color: rgba(255, 255, 255, 0.9);
}

/* Story Split */
.story-split {
    display: flex;
    flex-direction: column;
}

.story-left {
    min-height: 350px;
    overflow: hidden;
}

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

.story-right {
    padding: 3rem 1.5rem;
    background-color: #ffffff;
}

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

.story-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #555;
}

/* Values Split */
.values-split {
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

.values-header {
    margin-bottom: 2.5rem;
}

.values-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.value-item {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.value-item h3 {
    font-size: 1.4rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 600;
}

.value-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Methodology Split */
.methodology-split {
    display: flex;
    flex-direction: column;
}

.method-left {
    padding: 3rem 1.5rem;
    background-color: #ffffff;
}

.method-right {
    min-height: 400px;
    overflow: hidden;
}

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

.method-left h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    font-weight: 700;
}

.method-left > p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    color: #555;
}

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

.method-step h4 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #27ae60;
    font-weight: 600;
}

.method-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Team Intro Split */
.team-intro-split {
    display: flex;
    flex-direction: column;
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

.team-left {
    margin-bottom: 1.5rem;
}

.team-left h2 {
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

.team-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #555;
}

/* Impact Split */
.impact-split {
    display: flex;
    flex-direction: column;
}

.impact-left {
    min-height: 350px;
    overflow: hidden;
}

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

.impact-right {
    padding: 3rem 1.5rem;
    background-color: #ffffff;
}

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

.impact-right p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #555;
}

/* CTA About */
.cta-about {
    padding: 4rem 1.5rem;
    background-color: #27ae60;
    text-align: center;
}

.cta-about .cta-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 700;
}

.cta-about .cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Programs Detail */
.programs-detail {
    padding: 3rem 1.5rem;
    background-color: #ffffff;
}

.program-detail-item {
    display: flex;
    flex-direction: column;
    margin-bottom: 4rem;
}

.detail-left {
    min-height: 300px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 2rem;
}

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

.detail-right h2 {
    font-size: 2rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.detail-right > p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
    color: #555;
}

.program-includes {
    margin: 2rem 0;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.program-includes h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 600;
}

.program-includes ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.program-includes li {
    padding-left: 1.5rem;
    position: relative;
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

.program-includes li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: 700;
}

/* Comparison Section */
.comparison-section {
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
}

.comparison-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.comparison-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.comparison-item {
    background-color: #ffffff;
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
}

.comparison-item h4 {
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    color: #27ae60;
    font-weight: 600;
}

.comparison-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
}

/* Contact Info Split */
.contact-info-split {
    display: flex;
    flex-direction: column;
    padding: 3rem 1.5rem;
}

.contact-left {
    margin-bottom: 2rem;
}

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

.info-block {
    margin-bottom: 2rem;
}

.info-block h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #27ae60;
    font-weight: 600;
}

.info-block p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

.info-block a {
    color: #27ae60;
    font-weight: 500;
}

.info-block a:hover {
    text-decoration: underline;
}

.contact-right {
    min-height: 350px;
}

.map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 350px;
    border-radius: 8px;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Contact CTA Split */
.contact-cta-split {
    display: flex;
    flex-direction: column;
    padding: 3rem 1.5rem;
    background-color: #f8f9fa;
}

.contact-cta-split .cta-left {
    margin-bottom: 1.5rem;
}

.contact-cta-split .cta-left h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.contact-cta-split .cta-left p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

/* FAQ Section */
.faq-section {
    padding: 4rem 1.5rem;
    background-color: #ffffff;
}

.faq-section h2 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.faq-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

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

.faq-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

/* Thanks Page */
.thanks-hero {
    padding: 4rem 1.5rem;
    background-color: #f8f9fa;
    text-align: center;
}

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

.success-icon {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
}

.lead-text {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

.confirmation-details {
    margin-bottom: 1.5rem;
}

.confirmation-details p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #555;
}

.selected-program-confirm {
    background-color: #e8f5e9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.selected-program-confirm h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #27ae60;
    font-weight: 600;
}

.program-name {
    font-size: 1.3rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.steps-header {
    margin-bottom: 2.5rem;
    text-align: center;
}

.steps-header h2 {
    font-size: 2rem;
    color: #2c3e50;
    font-weight: 700;
}

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

.step-card {
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    position: relative;
}

.step-card .step-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    background-color: #27ae60;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    font-weight: 700;
}

.step-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.75rem;
    color: #2c3e50;
    font-weight: 600;
    padding-right: 50px;
}

.step-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: #555;
}

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

.resources-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    font-weight: 700;
    text-align: center;
}

.resources-content > p {
    font-size: 1.05rem;
    margin-bottom: 2.5rem;
    color: #555;
    text-align: center;
}

.resource-links {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.resource-link {
    background-color: #ffffff;
    padding: 1.75rem;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resource-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.resource-link h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #27ae60;
    font-weight: 600;
}

.resource-link p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

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

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

.thanks-cta .cta-content p {
    font-size: 1.05rem;
    margin-bottom: 2rem;
    color: #555;
    line-height: 1.7;
}

/* Legal Pages */
.legal-page {
    padding: 3rem 1.5rem;
    background-color: #ffffff;
}

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

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

.last-updated {
    font-size: 0.95rem;
    color: #777;
    margin-bottom: 2.5rem;
}

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

.legal-content h3 {
    font-size: 1.3rem;
    margin: 2rem 0 0.75rem;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content h4 {
    font-size: 1.1rem;
    margin: 1.5rem 0 0.5rem;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content p {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    color: #555;
}

.legal-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.legal-content ul li {
    list-style: disc;
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 0.5rem;
    color: #555;
}

.legal-content a {
    color: #27ae60;
    font-weight: 500;
}

.legal-content a:hover {
    text-decoration: underline;
}

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

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

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

.cookie-table td {
    font-size: 0.95rem;
    color: #555;
}

/* Tablet and Up */
@media (min-width: 768px) {
    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }

    .nav-toggle {
        display: none;
    }

    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        box-shadow: none;
        border: none;
    }

    .nav-menu li {
        border: none;
    }

    .nav-menu a {
        padding: 0.5rem 1rem;
    }

    .hero-split {
        flex-direction: row;
        min-height: 600px;
    }

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

    .hero-left {
        padding: 4rem 3rem;
    }

    .hero-left h1 {
        font-size: 3rem;
    }

    .stat-strip {
        flex-direction: row;
    }

    .stat-item {
        flex: 1;
        border-bottom: none;
        border-right: 1px solid rgba(255, 255, 255, 0.1);
    }

    .stat-item:last-child {
        border-right: none;
    }

    .approach-split {
        flex-direction: row-reverse;
    }

    .approach-split .approach-left,
    .approach-split .approach-right {
        flex: 1;
    }

    .approach-left {
        padding: 4rem 3rem;
    }

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

    .program-card {
        flex: 0 0 calc(50% - 0.75rem);
    }

    .section-header-split {
        flex-direction: row;
        gap: 3rem;
    }

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

    .testimonial-split {
        flex-direction: row;
    }

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

    .process-split {
        flex-direction: row;
    }

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

    .process-left {
        padding: 4rem 3rem;
    }

    .cta-full-split {
        flex-direction: row;
        align-items: center;
    }

    .cta-content-left,
    .cta-content-right {
        flex: 1;
        padding: 4rem 3rem;
    }

    .cta-content-right {
        flex-direction: row;
        justify-content: flex-end;
    }

    .form-section-split {
        flex-direction: row;
        gap: 3rem;
        padding: 5rem 3rem;
    }

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

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

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

    .footer-right {
        flex-direction: row;
        gap: 3rem;
    }

    .page-hero-split {
        flex-direction: row;
        min-height: 450px;
    }

    .page-hero-split .hero-left,
    .page-hero-split .hero-right {
        flex: 1;
    }

    .page-hero-split .hero-left {
        padding: 4rem 3rem;
    }

    .story-split {
        flex-direction: row;
    }

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

    .story-right {
        padding: 4rem 3rem;
    }

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

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

    .methodology-split {
        flex-direction: row;
    }

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

    .method-left {
        padding: 4rem 3rem;
    }

    .team-intro-split {
        flex-direction: row;
        gap: 3rem;
    }

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

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

    .impact-split {
        flex-direction: row;
    }

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

    .impact-right {
        padding: 4rem 3rem;
    }

    .program-detail-item {
        flex-direction: row;
        gap: 3rem;
        align-items: flex-start;
    }

    .program-detail-item.reverse {
        flex-direction: row-reverse;
    }

    .detail-left {
        flex: 0 0 45%;
        margin-bottom: 0;
    }

    .detail-right {
        flex: 1;
    }

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

    .comparison-item {
        flex: 0 0 calc(33.333% - 1rem);
    }

    .contact-info-split {
        flex-direction: row;
        gap: 3rem;
        padding: 4rem 3rem;
    }

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

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

    .contact-cta-split {
        flex-direction: row;
        align-items: center;
        gap: 3rem;
    }

    .contact-cta-split .cta-left {
        flex: 1;
        margin-bottom: 0;
    }

    .contact-cta-split .cta-right {
        flex: 0 0 auto;
    }

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

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

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

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

    .resource-links {
        flex-direction: row;
    }

    .resource-link {
        flex: 1;
    }
}

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

    .programs-grid {
        gap: 2rem;
    }

    .program-card {
        flex: 0 0 calc(33.333% - 1.35rem);
    }

    .comparison-item {
        flex: 0 0 calc(50% - 0.75rem);
    }

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

    .step-card {
        flex: 0 0 calc(25% - 1.5rem);
    }
}
