* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 9999;
    display: none;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

.cookie-actions {
    display: flex;
    gap: 15px;
}

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-accept {
    background: #4a9d5f;
    color: #ffffff;
}

.btn-accept:hover {
    background: #3d8450;
}

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

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

.main-header {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #2c5530;
}

.main-nav {
    display: flex;
    gap: 35px;
    align-items: center;
}

.main-nav a {
    text-decoration: none;
    color: #2c2c2c;
    font-weight: 500;
    transition: color 0.3s ease;
}

.main-nav a:hover {
    color: #4a9d5f;
}

.ad-disclosure {
    font-size: 12px;
    color: #666;
    padding: 5px 12px;
    border: 1px solid #ddd;
    border-radius: 3px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #2c2c2c;
    margin: 3px 0;
    transition: 0.3s;
}

.hero-split {
    display: flex;
    min-height: 90vh;
    background: #f8f8f8;
}

.hero-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: #ffffff;
}

.hero-content h1 {
    font-size: 56px;
    line-height: 1.1;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 800;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
    max-width: 540px;
}

.hero-visual {
    flex: 1;
    background: #2c5530;
    overflow: hidden;
    position: relative;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 40px;
    background: #4a9d5f;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 18px;
    border-radius: 6px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

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

.insight-split {
    display: flex;
    min-height: 600px;
}

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

.split-visual {
    flex: 1;
    background: #e8e8e8;
    overflow: hidden;
}

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

.split-content {
    flex: 1;
    padding: 100px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #fafafa;
}

.split-content h2 {
    font-size: 42px;
    line-height: 1.2;
    color: #1a1a1a;
    margin-bottom: 30px;
    font-weight: 700;
}

.split-content p {
    font-size: 18px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.split-content.dark {
    background: #2c2c2c;
    color: #ffffff;
}

.split-content.dark h2 {
    color: #ffffff;
}

.split-content.dark p {
    color: #d0d0d0;
}

.dark-overlay {
    position: relative;
}

.dark-overlay::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.story-flow {
    padding: 120px 60px;
    background: #ffffff;
}

.story-container {
    max-width: 1000px;
    margin: 0 auto;
}

.story-block {
    margin-bottom: 60px;
}

.story-block h3 {
    font-size: 32px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.story-block p {
    font-size: 19px;
    line-height: 1.8;
    color: #4a4a4a;
}

.story-image {
    margin: 60px 0;
    background: #f0f0f0;
}

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

.problem-split {
    display: flex;
    min-height: 650px;
}

.programs-section {
    padding: 120px 60px;
    background: #f5f5f5;
}

.programs-header {
    text-align: center;
    margin-bottom: 80px;
}

.programs-header h2 {
    font-size: 48px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.programs-header p {
    font-size: 20px;
    color: #666;
}

.programs-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.program-card {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    position: relative;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.program-card.featured {
    border: 2px solid #4a9d5f;
}

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #4a9d5f;
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    z-index: 10;
}

.program-visual {
    height: 250px;
    background: #e0e0e0;
    overflow: hidden;
}

.program-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.program-details {
    padding: 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-details h3 {
    font-size: 26px;
    color: #1a1a1a;
    margin-bottom: 15px;
    font-weight: 700;
}

.program-details p {
    font-size: 16px;
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.program-outcomes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 25px;
}

.program-outcomes span {
    padding: 6px 14px;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 13px;
    color: #555;
}

.program-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c5530;
    margin-bottom: 25px;
    margin-top: auto;
}

.btn-select {
    width: 100%;
    padding: 14px;
    background: #4a9d5f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-select:hover {
    background: #3d8450;
}

.testimonials-split {
    display: flex;
    background: #ffffff;
}

.testimonials-split .split-content {
    background: #2c5530;
    color: #ffffff;
}

.testimonials-split .split-content h2 {
    color: #ffffff;
    margin-bottom: 50px;
}

.testimonial-block {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 6px;
}

.testimonial-block p {
    font-size: 18px;
    line-height: 1.7;
    color: #ffffff;
    font-style: italic;
    margin-bottom: 15px;
}

.testimonial-block cite {
    font-size: 15px;
    color: #d0d0d0;
    font-style: normal;
}

.enrollment-section {
    padding: 120px 60px;
    background: #fafafa;
}

.enrollment-container {
    max-width: 800px;
    margin: 0 auto;
}

.enrollment-content {
    text-align: center;
    margin-bottom: 60px;
}

.enrollment-content h2 {
    font-size: 42px;
    color: #1a1a1a;
    margin-bottom: 20px;
    font-weight: 700;
}

.enrollment-content p {
    font-size: 18px;
    color: #666;
}

.enrollment-form {
    background: #ffffff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.selected-program-display {
    background: #e8f5e9;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 30px;
    text-align: center;
}

.selected-program-display strong {
    color: #2c5530;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    flex: 1;
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c2c2c;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    padding: 16px;
    background: #4a9d5f;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: #3d8450;
}

.final-insight {
    padding: 120px 60px;
    background: #1a1a1a;
    color: #ffffff;
}

.insight-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.insight-container h2 {
    font-size: 48px;
    margin-bottom: 30px;
    font-weight: 700;
}

.insight-container p {
    font-size: 20px;
    line-height: 1.8;
    color: #d0d0d0;
    margin-bottom: 40px;
}

.cta-secondary {
    display: inline-block;
    padding: 14px 38px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    text-decoration: none;
    font-weight: 600;
    font-size: 17px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.cta-secondary:hover {
    background: #ffffff;
    color: #1a1a1a;
}

.main-footer {
    background: #2c2c2c;
    color: #d0d0d0;
    padding: 80px 60px 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-column {
    flex: 1;
}

.footer-column h4 {
    color: #ffffff;
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-column p {
    font-size: 14px;
    line-height: 1.7;
}

.footer-column a {
    display: block;
    color: #d0d0d0;
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: #ffffff;
}

.footer-disclaimer {
    max-width: 1400px;
    margin: 0 auto 40px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.7;
    color: #999;
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #444;
    text-align: center;
}

.footer-bottom p {
    font-size: 14px;
    color: #999;
}

@media (max-width: 1024px) {
    .hero-split,
    .insight-split,
    .problem-split,
    .testimonials-split {
        flex-direction: column;
    }

    .insight-split.reverse {
        flex-direction: column;
    }

    .hero-content,
    .split-content {
        padding: 60px 40px;
    }

    .hero-visual {
        min-height: 400px;
    }

    .main-nav {
        display: none;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .programs-grid {
        flex-direction: column;
        align-items: center;
    }

    .program-card {
        max-width: 100%;
    }

    .footer-content {
        flex-wrap: wrap;
    }

    .form-row {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 38px;
    }

    .hero-content p {
        font-size: 17px;
    }

    .split-content h2 {
        font-size: 32px;
    }

    .programs-header h2 {
        font-size: 36px;
    }

    .enrollment-form {
        padding: 30px;
    }

    .header-container {
        padding: 15px 20px;
    }

    .programs-section,
    .enrollment-section,
    .story-flow,
    .final-insight {
        padding: 60px 20px;
    }
}