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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 1.5rem;
    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;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.cookie-content p {
    flex: 1;
    margin: 0;
    min-width: 250px;
}

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

.btn-accept, .btn-reject {
    padding: 0.6rem 1.5rem;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.btn-accept {
    background: #2d6ae1;
    color: #ffffff;
}

.btn-accept:hover {
    background: #1e4fa3;
}

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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1a1a;
    text-decoration: none;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2d6ae1;
}

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

.hero-split {
    display: flex;
    min-height: 85vh;
    align-items: stretch;
}

.hero-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 600px;
}

.hero-content h1 {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 1.15rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.hero-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hero-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.cta-primary {
    display: inline-block;
    padding: 1rem 2rem;
    background: #2d6ae1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: background 0.3s ease;
    align-self: flex-start;
}

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

.intro-dual {
    display: flex;
    align-items: stretch;
}

.intro-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.intro-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.intro-text {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intro-text h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.intro-text p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
}

.services-showcase {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.services-showcase h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.service-card {
    display: flex;
    gap: 0;
    align-items: stretch;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
}

.service-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.service-info {
    flex: 1;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-info h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-info p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 1rem;
}

.price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2d6ae1;
    margin-bottom: 1.5rem;
}

.btn-secondary {
    padding: 0.8rem 1.5rem;
    background: transparent;
    color: #2d6ae1;
    border: 2px solid #2d6ae1;
    border-radius: 5px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.btn-secondary:hover {
    background: #2d6ae1;
    color: #ffffff;
}

.enrollment-split {
    display: flex;
    background: #f8f9fa;
    align-items: stretch;
}

.enrollment-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.enrollment-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.enrollment-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.benefits-compact {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.benefit-item {
    padding-left: 1.5rem;
    position: relative;
    color: #333;
}

.benefit-item::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2d6ae1;
    font-weight: bold;
}

.enrollment-form-wrapper {
    flex: 1;
    padding: 4rem 3rem;
    background: #ffffff;
    display: flex;
    align-items: center;
}

.enrollment-form {
    width: 100%;
    max-width: 450px;
}

.enrollment-form h3 {
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.service-display {
    background: #e8f4ff;
    padding: 0.8rem;
    border-radius: 4px;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
    font-weight: 600;
}

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

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

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

.btn-primary {
    width: 100%;
    padding: 1rem;
    background: #2d6ae1;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.btn-primary:hover {
    background: #1e4fa3;
}

.approach-narrative {
    padding: 5rem 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.approach-content h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.approach-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.text-link {
    color: #2d6ae1;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.text-link:hover {
    color: #1e4fa3;
}

.outcomes-split {
    display: flex;
    align-items: stretch;
}

.outcomes-visual {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.outcomes-visual img {
    width: 100%;
    height: 100%;
    display: block;
}

.outcomes-content {
    flex: 1;
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.outcomes-content h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.outcomes-list {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
}

.outcome h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #1a1a1a;
}

.outcome p {
    font-size: 1rem;
    color: #4a4a4a;
}

.testimonials-inline {
    padding: 5rem 2rem;
    background: #f8f9fa;
}

.testimonials-inline h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 3rem;
    color: #1a1a1a;
}

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

.testimonial {
    background: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #2d6ae1;
}

.testimonial p {
    font-size: 1.05rem;
    color: #333;
    margin-bottom: 1rem;
    line-height: 1.7;
}

.testimonial cite {
    font-style: normal;
    color: #666;
    font-size: 0.95rem;
}

.final-cta-full {
    padding: 5rem 2rem;
    background: #1a2332;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #ffffff;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    color: #d0d0d0;
    margin-bottom: 2rem;
}

.btn-primary-large {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: #2d6ae1;
    color: #ffffff;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: background 0.3s ease;
}

.btn-primary-large:hover {
    background: #1e4fa3;
}

.site-footer {
    background: #1a1a1a;
    color: #ffffff;
    padding: 3rem 2rem 1rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section h4 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-section a {
    display: block;
    color: #d0d0d0;
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

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

.footer-section p {
    color: #d0d0d0;
    margin: 0;
}

.footer-disclaimer {
    max-width: 1200px;
    margin: 0 auto 2rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.footer-disclaimer p {
    font-size: 0.9rem;
    color: #d0d0d0;
    line-height: 1.6;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 1.5rem;
    border-top: 1px solid #333;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    color: #999;
}

.contact-split {
    display: flex;
    min-height: 70vh;
}

.contact-info-side {
    flex: 1;
    padding: 4rem 3rem;
    background: #1a2332;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info-side h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #2d6ae1;
}

.contact-item p {
    font-size: 1rem;
    color: #d0d0d0;
}

.contact-map-side {
    flex: 1;
    background: #f8f9fa;
}

.page-header {
    background: #1a2332;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 1rem;
}

.page-header p {
    font-size: 1.1rem;
    color: #d0d0d0;
}

.page-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.page-content h2 {
    font-size: 2rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.page-content h3 {
    font-size: 1.5rem;
    margin-top: 2rem;
    margin-bottom: 0.8rem;
    color: #1a1a1a;
}

.page-content p {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 1.2rem;
    line-height: 1.7;
}

.page-content ul {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.page-content li {
    font-size: 1.05rem;
    color: #4a4a4a;
    margin-bottom: 0.5rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.service-detail {
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 2rem;
    background: #ffffff;
}

.service-detail h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #1a1a1a;
}

.service-detail .price {
    font-size: 1.6rem;
    font-weight: 700;
    color: #2d6ae1;
    margin-bottom: 1rem;
}

.service-detail p {
    font-size: 1rem;
    color: #4a4a4a;
    margin-bottom: 0.8rem;
}

.service-detail ul {
    margin-top: 1rem;
}

.thanks-container {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.thanks-content {
    text-align: center;
    max-width: 600px;
}

.thanks-content h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: #1a1a1a;
}

.thanks-content p {
    font-size: 1.1rem;
    color: #4a4a4a;
    margin-bottom: 2rem;
}

.thanks-service {
    background: #e8f4ff;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #1a1a1a;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-dual,
    .enrollment-split,
    .outcomes-split,
    .contact-split {
        flex-direction: column;
    }

    .service-card {
        flex-direction: column;
    }

    .nav-container {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .page-header h1 {
        font-size: 2rem;
    }
}