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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #0f172a;
    --accent: #f59e0b;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text);
    line-height: 1.6;
    background: var(--bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--secondary);
    color: white;
    padding: 20px;
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

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

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

.btn-accept {
    background: var(--primary);
    color: white;
}

.btn-accept:hover {
    background: var(--primary-dark);
}

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

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

.header {
    background: var(--bg);
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--secondary);
}

.nav {
    display: flex;
    gap: 32px;
}

.nav a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary);
}

.ad-label {
    font-size: 12px;
    color: var(--text-light);
    padding: 6px 12px;
    border: 1px solid var(--border);
    border-radius: 4px;
}

.hero-split {
    display: flex;
    align-items: center;
    min-height: 600px;
    gap: 48px;
    padding: 80px 24px;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--secondary);
}

.hero-content p {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.hero-visual {
    flex: 1;
    background: var(--bg-alt);
    border-radius: 12px;
    overflow: hidden;
}

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

.cta-primary {
    display: inline-block;
    padding: 16px 32px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.intro-section {
    padding: 80px 24px;
    background: var(--bg-alt);
}

.intro-section h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary);
}

.intro-section p {
    font-size: 18px;
    color: var(--text-light);
}

.problem-amplification {
    padding: 80px 24px;
}

.split-layout {
    display: flex;
    align-items: center;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.split-image {
    flex: 1;
    background: var(--bg-alt);
    border-radius: 12px;
    overflow: hidden;
}

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

.split-text {
    flex: 1;
}

.split-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.split-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    padding: 12px 0;
    padding-left: 32px;
    position: relative;
    font-size: 17px;
    color: var(--text);
}

.styled-list li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
}

.insight-section {
    padding: 80px 24px;
    background: var(--secondary);
    color: white;
}

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

.insight-box h3 {
    font-size: 36px;
    margin-bottom: 24px;
}

.insight-box p {
    font-size: 20px;
    line-height: 1.8;
    opacity: 0.9;
}

.trust-building {
    padding: 80px 24px;
}

.pillars {
    display: flex;
    gap: 32px;
    margin-top: 32px;
}

.pillar {
    flex: 1;
    padding: 24px;
    background: var(--bg-alt);
    border-radius: 8px;
}

.pillar strong {
    display: block;
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 8px;
}

.pillar p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0;
}

.testimonials-section {
    padding: 80px 24px;
    background: var(--bg-alt);
}

.testimonials-section h3 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--secondary);
}

.testimonials-grid {
    display: flex;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    flex: 1;
    padding: 32px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-card p {
    font-size: 17px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text);
}

.testimonial-card cite {
    font-size: 14px;
    color: var(--text-light);
    font-style: normal;
}

.services-reveal {
    padding: 80px 24px;
}

.services-reveal h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--secondary);
}

.services-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    flex: 1 1 calc(33.333% - 24px);
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--bg-alt);
}

.service-card h4 {
    font-size: 22px;
    margin: 20px 24px 12px;
    color: var(--secondary);
}

.service-card p {
    font-size: 15px;
    color: var(--text-light);
    margin: 0 24px 16px;
    line-height: 1.6;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    padding: 16px 24px;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.duration {
    font-size: 14px;
    color: var(--text-light);
}

.price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
}

.btn-select {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-select:hover {
    background: var(--primary-dark);
}

.form-section {
    padding: 80px 24px;
    background: var(--bg-alt);
}

.form-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 16px;
    color: var(--secondary);
}

.form-section > p {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 48px;
}

.enrollment-form {
    background: white;
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 16px;
    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: var(--primary);
}

.btn-submit {
    width: 100%;
    padding: 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-submit:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.disclaimer-section {
    padding: 48px 24px;
}

.disclaimer {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    text-align: center;
    font-style: italic;
}

.footer {
    background: var(--secondary);
    color: white;
    padding: 64px 24px 24px;
}

.footer-grid {
    display: flex;
    gap: 48px;
    max-width: 1200px;
    margin: 0 auto 48px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

.footer-col p {
    font-size: 14px;
    opacity: 0.8;
    line-height: 1.6;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 8px;
}

.footer-col a {
    color: white;
    text-decoration: none;
    font-size: 14px;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 14px;
    opacity: 0.6;
}

.page-hero {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 80px 24px;
    text-align: center;
    color: white;
}

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.9;
}

.services-detailed {
    padding: 80px 24px;
}

.service-detail-card {
    margin-bottom: 80px;
}

.service-detail-split {
    display: flex;
    align-items: center;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.service-detail-image {
    flex: 1;
    background: var(--bg-alt);
    border-radius: 12px;
    overflow: hidden;
}

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

.service-detail-content {
    flex: 1;
}

.service-detail-content h2 {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.service-duration {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 16px;
}

.service-description {
    font-size: 17px;
    color: var(--text);
    margin-bottom: 24px;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 24px;
}

.service-features li {
    padding: 10px 0;
    padding-left: 32px;
    position: relative;
    font-size: 16px;
    color: var(--text);
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 18px;
}

.service-pricing-block {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--bg-alt);
    border-radius: 8px;
}

.price-label {
    font-size: 16px;
    color: var(--text-light);
}

.price-amount {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary);
}

.btn-enroll {
    padding: 14px 32px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-enroll:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.about-intro {
    padding: 80px 24px;
}

.about-split {
    display: flex;
    align-items: center;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--secondary);
}

.about-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.about-image {
    flex: 1;
    background: var(--bg-alt);
    border-radius: 12px;
    overflow: hidden;
}

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

.methodology-section {
    padding: 80px 24px;
    background: var(--bg-alt);
}

.methodology-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--secondary);
}

.methodology-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

.methodology-card {
    flex: 1 1 calc(50% - 16px);
    padding: 32px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.methodology-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.methodology-card p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.values-section {
    padding: 80px 24px;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--secondary);
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.value-item {
    padding: 24px;
    border-left: 4px solid var(--primary);
    background: var(--bg-alt);
    border-radius: 0 8px 8px 0;
}

.value-item h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: var(--secondary);
}

.value-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.team-approach {
    padding: 80px 24px;
    background: var(--bg-alt);
}

.team-split {
    display: flex;
    align-items: center;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-image {
    flex: 1;
    background: white;
    border-radius: 12px;
    overflow: hidden;
}

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

.team-text {
    flex: 1;
}

.team-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.team-text p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.business-model-section {
    padding: 80px 24px;
}

.business-model-section h2 {
    font-size: 36px;
    text-align: center;
    margin-bottom: 32px;
    color: var(--secondary);
}

.business-model-section p {
    font-size: 17px;
    color: var(--text-light);
    margin-bottom: 20px;
    line-height: 1.7;
}

.contact-section {
    padding: 80px 24px;
}

.contact-layout {
    display: flex;
    gap: 64px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: var(--secondary);
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h4 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 8px;
    font-weight: 600;
}

.contact-item p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-note {
    padding: 20px;
    background: var(--bg-alt);
    border-radius: 8px;
    margin-top: 32px;
}

.contact-note p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.6;
    margin: 0;
}

.contact-form-wrapper {
    flex: 1;
}

.contact-form-wrapper h2 {
    font-size: 32px;
    margin-bottom: 24px;
    color: var(--secondary);
}

.contact-form {
    background: var(--bg-alt);
    padding: 32px;
    border-radius: 12px;
}

.thanks-section {
    padding: 120px 24px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.thanks-content {
    text-align: center;
}

.thanks-icon {
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: var(--secondary);
}

.thanks-message {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.service-confirmation {
    padding: 24px;
    background: var(--bg-alt);
    border-radius: 8px;
    margin-bottom: 48px;
}

.service-confirmation p {
    font-size: 18px;
    color: var(--text);
    margin: 0;
}

.thanks-info {
    margin-bottom: 48px;
}

.thanks-info h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.next-steps {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 600px;
    margin: 0 auto;
}

.next-steps li {
    padding: 16px 0;
    padding-left: 40px;
    position: relative;
    font-size: 17px;
    color: var(--text);
    border-bottom: 1px solid var(--border);
}

.next-steps li:before {
    content: "→";
    position: absolute;
    left: 0;
    color: var(--primary);
    font-weight: bold;
    font-size: 24px;
}

.next-steps li:last-child {
    border-bottom: none;
}

.thanks-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

.btn-primary {
    display: inline-block;
    padding: 14px 32px;
    background: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-secondary {
    display: inline-block;
    padding: 14px 32px;
    background: transparent;
    color: var(--primary);
    text-decoration: none;
    border: 2px solid var(--primary);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: var(--primary);
    color: white;
}

.legal-page {
    padding: 80px 24px;
    min-height: 600px;
}

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 16px;
    color: var(--secondary);
}

.last-updated {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: 48px;
    font-style: italic;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--secondary);
}

.legal-page p {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.legal-page ul {
    margin-bottom: 20px;
    padding-left: 32px;
}

.legal-page ul li {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 12px;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
        padding: 40px 24px;
    }

    .hero-content h1 {
        font-size: 32px;
    }

    .split-layout,
    .split-layout.reverse {
        flex-direction: column;
        gap: 32px;
    }

    .pillars {
        flex-direction: column;
    }

    .testimonials-grid {
        flex-direction: column;
    }

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

    .footer-grid {
        flex-direction: column;
        gap: 32px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav {
        display: none;
    }

    .page-hero h1 {
        font-size: 32px;
    }

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

    .about-split,
    .team-split {
        flex-direction: column;
    }

    .methodology-card {
        flex: 1 1 100%;
    }

    .contact-layout {
        flex-direction: column;
        gap: 48px;
    }

    .thanks-content h1 {
        font-size: 32px;
    }

    .thanks-actions {
        flex-direction: column;
    }

    .legal-page h1 {
        font-size: 32px;
    }
}