* {
    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: #2c3e50;
    background-color: #ffffff;
}

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

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

.header-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-left .logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a5490;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.ad-disclosure {
    font-size: 0.75rem;
    color: #6c757d;
    padding: 0.25rem 0.75rem;
    background-color: #f8f9fa;
    border-radius: 4px;
}

.main-nav {
    display: flex;
    gap: 2rem;
}

.main-nav a {
    font-size: 0.95rem;
    color: #495057;
    transition: color 0.3s;
}

.main-nav a:hover {
    color: #1a5490;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f5f8fa;
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 4rem 5%;
    background-color: #f5f8fa;
}

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

.hero-subtext {
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 2rem;
    max-width: 540px;
}

.hero-right {
    flex: 1;
    background-color: #e8ecef;
}

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

.cta-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5490;
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 6px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

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

.intro-section {
    padding: 4rem 5%;
    background-color: #ffffff;
}

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

.intro-text {
    font-size: 1.25rem;
    line-height: 1.8;
    color: #495057;
    text-align: center;
}

.services-grid {
    padding: 5rem 5%;
    background-color: #f5f8fa;
}

.services-header {
    text-align: center;
    margin-bottom: 4rem;
}

.services-header h2 {
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

.services-header p {
    font-size: 1.1rem;
    color: #6c757d;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
}

.service-card {
    flex: 1;
    min-width: 320px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 220px;
    background-color: #e8ecef;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    padding: 1.5rem 1.5rem 0.5rem;
}

.service-card p {
    padding: 0 1.5rem;
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a5490;
    padding: 1rem 1.5rem 0.5rem;
}

.btn-select {
    display: block;
    width: calc(100% - 3rem);
    margin: 1rem 1.5rem 1.5rem;
    padding: 0.9rem;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.enrollment-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

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

.enrollment-left {
    flex: 1;
}

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

.enrollment-left p {
    font-size: 1.1rem;
    color: #6c757d;
    line-height: 1.7;
}

.enrollment-right {
    flex: 1;
}

.enrollment-form {
    background-color: #f5f8fa;
    padding: 2.5rem;
    border-radius: 8px;
}

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

.enrollment-container h2 {
    font-size: 2.5rem;
    color: #1a5490;
    text-align: center;
    margin-bottom: 2rem;
}

.enrollment-form-centered {
    background-color: #f5f8fa;
    padding: 2.5rem;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid #ced4da;
    border-radius: 6px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

.btn-submit {
    width: 100%;
    padding: 1rem;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonials-section {
    padding: 5rem 5%;
    background-color: #1a5490;
    color: #ffffff;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.testimonial {
    flex: 1;
    min-width: 300px;
    background-color: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 8px;
}

.testimonial p {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.8);
}

.main-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 3rem 5% 1rem;
}

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

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

.footer-col h4 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

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

.footer-col a {
    display: block;
    color: #adb5bd;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    transition: color 0.3s;
}

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

.footer-disclaimer {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 1.5rem;
    background-color: rgba(255,255,255,0.05);
    border-radius: 6px;
    font-size: 0.85rem;
    line-height: 1.6;
    color: #adb5bd;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #adb5bd;
    font-size: 0.85rem;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem 5%;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

.cookie-banner.hidden {
    display: none;
}

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

.cookie-content p {
    flex: 1;
    font-size: 0.95rem;
}

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

.btn-cookie {
    padding: 0.7rem 1.5rem;
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    background-color: #6c757d;
}

.btn-secondary:hover {
    background-color: #5a6268;
}

.page-hero {
    padding: 5rem 5%;
    background-color: #f5f8fa;
    text-align: center;
}

.hero-content-centered h1 {
    font-size: 3rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

.hero-content-centered p {
    font-size: 1.2rem;
    color: #6c757d;
}

.about-split {
    display: flex;
    gap: 4rem;
    padding: 5rem 5%;
    max-width: 1200px;
    margin: 0 auto;
    align-items: center;
}

.about-image {
    flex: 1;
    background-color: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

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

.about-text {
    flex: 1;
}

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

.about-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 1.2rem;
}

.values-section {
    padding: 5rem 5%;
    background-color: #f5f8fa;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 3rem;
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.value-card h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.value-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
}

.approach-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.approach-content {
    display: flex;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.approach-content img {
    flex: 1;
    border-radius: 8px;
    background-color: #e8ecef;
}

.approach-text {
    flex: 1;
}

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

.approach-text p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 1.2rem;
}

.cta-section {
    padding: 5rem 5%;
    background-color: #1a5490;
    text-align: center;
    color: #ffffff;
}

.cta-section h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.services-detail {
    padding: 4rem 5%;
    background-color: #ffffff;
}

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

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

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

.service-detail-left img {
    border-radius: 8px;
    background-color: #e8ecef;
}

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

.service-detail-right h2 {
    font-size: 2rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

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

.service-detail-right p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 1.5rem;
}

.service-detail-right h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.service-detail-right ul {
    margin-bottom: 2rem;
    padding-left: 1.5rem;
}

.service-detail-right ul li {
    font-size: 1rem;
    line-height: 1.8;
    color: #6c757d;
}

.contact-section {
    padding: 4rem 5%;
    background-color: #ffffff;
}

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

.contact-info {
    flex: 1;
}

.contact-block {
    margin-bottom: 2.5rem;
}

.contact-block h2 {
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

.contact-block h3 {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-block p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: #495057;
}

.contact-detail {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.contact-note {
    font-size: 0.95rem;
    color: #6c757d;
    margin-top: 0.5rem;
}

.contact-image {
    flex: 1;
    background-color: #e8ecef;
    border-radius: 8px;
    overflow: hidden;
}

.contact-image img {
    width: 100%;
    height: 100%;
}

.faq-section {
    padding: 5rem 5%;
    background-color: #f5f8fa;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 3rem;
}

.faq-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.faq-item {
    flex: 1;
    min-width: 280px;
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
}

.faq-item p {
    font-size: 1rem;
    line-height: 1.6;
    color: #6c757d;
}

.thanks-section {
    padding: 5rem 5%;
    background-color: #f5f8fa;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.thanks-content {
    max-width: 700px;
    text-align: center;
    background-color: #ffffff;
    padding: 4rem 3rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

.thanks-icon {
    margin-bottom: 2rem;
}

.thanks-content h1 {
    font-size: 2.5rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

.thanks-message {
    font-size: 1.2rem;
    color: #495057;
    margin-bottom: 1rem;
}

.thanks-detail {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 2rem;
}

.thanks-next h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    margin-top: 2rem;
}

.next-steps {
    text-align: left;
    margin-bottom: 2rem;
}

.step {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.step p {
    flex: 1;
    font-size: 1rem;
    line-height: 1.6;
    color: #495057;
    padding-top: 0.5rem;
}

.btn-primary {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: #1a5490;
    color: #ffffff;
    border-radius: 6px;
    font-size: 1rem;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-primary:hover {
    background-color: #144070;
}

.legal-page {
    padding: 4rem 5%;
    background-color: #ffffff;
}

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

.legal-content h1 {
    font-size: 2.8rem;
    color: #1a5490;
    margin-bottom: 1rem;
}

.legal-updated {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 2rem;
}

.legal-content h2 {
    font-size: 1.8rem;
    color: #2c3e50;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
}

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

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

.legal-content ul li {
    font-size: 1rem;
    line-height: 1.7;
    color: #495057;
    margin-bottom: 0.5rem;
}

.legal-content a {
    color: #1a5490;
    text-decoration: underline;
}

.legal-content a:hover {
    color: #144070;
}

@media (max-width: 768px) {
    .header-split {
        flex-direction: column;
        gap: 1rem;
    }

    .hero-split,
    .about-split,
    .enrollment-split,
    .approach-content,
    .service-detail-card,
    .contact-layout {
        flex-direction: column;
    }

    .hero-left h1,
    .hero-content-centered h1 {
        font-size: 2rem;
    }

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

    .main-nav {
        gap: 1rem;
    }
}