* {
    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;
}

.navbar {
    background-color: #1a1a2e;
    padding: 1rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

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

.brand {
    color: #ffffff;
    font-size: 1.5rem;
    font-weight: 600;
    text-decoration: none;
}

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

.nav-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #3498db;
}

.ad-disclosure {
    color: #95a5a6;
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    border-left: 1px solid #34495e;
    margin-left: 1rem;
}

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

.hero-left {
    flex: 1;
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #16213e;
    color: #ffffff;
}

.hero-left h1 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-left p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #e8e8e8;
}

.hero-right {
    flex: 1;
    background-color: #e8ebee;
    overflow: hidden;
}

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

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

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

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

.intro-section {
    background-color: #ffffff;
}

.intro-split {
    display: flex;
    gap: 3rem;
    align-items: center;
}

.intro-image {
    flex: 0 0 45%;
    background-color: #dfe6e9;
}

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

.intro-text {
    flex: 1;
}

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

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

.values-split {
    display: flex;
    background-color: #ecf0f1;
    min-height: 500px;
}

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

.values-left h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.values-left p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.values-list {
    list-style: none;
    padding-left: 0;
}

.values-list li {
    padding: 0.7rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #34495e;
}

.values-list li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #e74c3c;
    font-weight: bold;
}

.values-right {
    flex: 1;
    background-color: #dfe6e9;
}

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

.services-overview {
    background-color: #ffffff;
}

.services-overview h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    flex: 1 1 calc(33.333% - 2rem);
    min-width: 300px;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #dfe6e9;
}

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

.service-card p {
    padding: 0 1.5rem 1rem;
    color: #555;
    font-size: 0.95rem;
}

.service-price {
    padding: 0 1.5rem 1rem;
    font-size: 1.8rem;
    font-weight: 700;
    color: #27ae60;
}

.select-service {
    margin: 0 1.5rem 1.5rem;
    width: calc(100% - 3rem);
    padding: 0.9rem;
    background-color: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #2980b9;
}

.testimonial-split {
    background-color: #2c3e50;
    padding: 4rem 0;
}

.testimonial-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    gap: 3rem;
    align-items: center;
}

.testimonial-text {
    flex: 1;
    color: #ffffff;
}

.testimonial-text blockquote {
    font-size: 1.3rem;
    line-height: 1.8;
    font-style: italic;
    margin: 0;
}

.testimonial-text cite {
    display: block;
    margin-top: 1.5rem;
    font-size: 1rem;
    font-style: normal;
    color: #95a5a6;
}

.testimonial-image {
    flex: 0 0 40%;
    background-color: #34495e;
}

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

.form-section {
    background-color: #f8f9fa;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.form-container h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
    text-align: center;
}

.form-container > p {
    text-align: center;
    margin-bottom: 2.5rem;
    color: #555;
}

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

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

.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 #ddd;
    border-radius: 4px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s;
}

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

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

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

.disclaimer-section {
    background-color: #ecf0f1;
    padding: 2rem 0;
}

.disclaimer {
    font-size: 0.9rem;
    color: #7f8c8d;
    text-align: center;
    line-height: 1.6;
    font-style: italic;
}

.footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 3rem 0 1rem;
}

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

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

.footer-section h4 {
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section p {
    color: #95a5a6;
    font-size: 0.95rem;
}

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

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #95a5a6;
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 2rem auto 0;
    padding: 1.5rem 2rem 0;
    border-top: 1px solid #34495e;
    text-align: center;
    color: #7f8c8d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 1.5rem;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    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: 2rem;
}

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

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

.btn-accept,
.btn-reject {
    padding: 0.7rem 1.5rem;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.btn-reject {
    background-color: #7f8c8d;
    color: #ffffff;
}

.btn-reject:hover {
    background-color: #6c7a7b;
}

.page-hero-split {
    display: flex;
    min-height: 400px;
    background-color: #f8f9fa;
}

.hero-content-left {
    flex: 1;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #34495e;
    color: #ffffff;
}

.hero-content-left h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content-left p {
    font-size: 1.1rem;
    color: #ecf0f1;
}

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

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

.about-content {
    background-color: #ffffff;
}

.split-layout {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

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

.text-content-wide {
    flex: 1;
}

.text-content-wide h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.text-content-wide p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.image-content-narrow {
    flex: 0 0 40%;
    background-color: #dfe6e9;
}

.image-content-narrow img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.values-block {
    margin-top: 3rem;
}

.values-block h2 {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 2.5rem;
    color: #2c3e50;
}

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

.value-item {
    flex: 1 1 calc(50% - 1rem);
    min-width: 280px;
    padding: 2rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

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

.value-item p {
    color: #555;
    font-size: 0.98rem;
}

.team-split {
    display: flex;
    background-color: #ecf0f1;
}

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

.team-text h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.team-text p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.team-image {
    flex: 1;
    background-color: #dfe6e9;
}

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

.commitment-section {
    background-color: #ffffff;
}

.commitment-section h2 {
    font-size: 2.2rem;
    margin-bottom: 1.5rem;
    color: #2c3e50;
}

.commitment-section p {
    font-size: 1.05rem;
    margin-bottom: 1.2rem;
    color: #555;
}

.services-detailed {
    background-color: #ffffff;
}

.service-detail-split {
    display: flex;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid #e0e0e0;
}

.service-detail-split:last-child {
    border-bottom: none;
}

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

.service-info {
    flex: 1;
}

.service-info h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.service-info p {
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    color: #555;
}

.service-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    margin-top: 1.5rem;
    color: #2c3e50;
}

.service-info ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 2rem;
}

.service-info ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.service-info ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.service-visual {
    flex: 0 0 45%;
    background-color: #dfe6e9;
}

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

.enrollment-cta {
    background-color: #ecf0f1;
    text-align: center;
}

.enrollment-cta h2 {
    font-size: 2.2rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

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

.contact-content {
    background-color: #ffffff;
}

.contact-split {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.contact-info {
    flex: 1;
}

.contact-info h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

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

.info-block h3 {
    font-size: 1.3rem;
    margin-bottom: 0.7rem;
    color: #2c3e50;
}

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

.contact-visual {
    flex: 0 0 45%;
    background-color: #dfe6e9;
}

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

.faq-section {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 1px solid #e0e0e0;
}

.faq-section h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.faq-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #3498db;
}

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

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

.location-context {
    background-color: #ecf0f1;
}

.location-context h2 {
    font-size: 2rem;
    margin-bottom: 1.2rem;
    color: #2c3e50;
}

.location-context p {
    font-size: 1.05rem;
    color: #555;
}

.thanks-hero {
    background-color: #27ae60;
    color: #ffffff;
    padding: 4rem 2rem;
    text-align: center;
}

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

.thanks-content p {
    font-size: 1.2rem;
}

.thanks-details {
    background-color: #ffffff;
}

.thanks-split {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
    margin-bottom: 3rem;
}

.thanks-text {
    flex: 1;
}

.thanks-text h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    color: #2c3e50;
}

.step-item {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f8f9fa;
    border-left: 4px solid #27ae60;
}

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

.step-item p {
    font-size: 1rem;
    color: #555;
}

.thanks-image {
    flex: 0 0 40%;
    background-color: #dfe6e9;
}

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

.service-confirmation {
    padding: 1.5rem;
    background-color: #ecf0f1;
    border-radius: 8px;
    margin-bottom: 2rem;
    text-align: center;
}

.additional-info {
    padding: 2rem;
    background-color: #fff9e6;
    border-left: 4px solid #f39c12;
    margin-bottom: 2rem;
}

.additional-info h2 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #2c3e50;
}

.additional-info p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 0.8rem;
}

.additional-info a {
    color: #3498db;
    text-decoration: underline;
}

.next-actions {
    background-color: #f8f9fa;
}

.next-actions h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: #2c3e50;
}

.action-cards {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.action-card {
    flex: 1;
    min-width: 250px;
    padding: 2rem;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
}

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

.action-card p {
    font-size: 1rem;
    color: #555;
    margin-bottom: 1.5rem;
}

.action-card a {
    display: inline-block;
    padding: 0.7rem 1.5rem;
    background-color: #3498db;
    color: #ffffff;
    text-decoration: none;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.action-card a:hover {
    background-color: #2980b9;
}

.legal-page {
    background-color: #ffffff;
}

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

.effective-date {
    color: #7f8c8d;
    font-style: italic;
    margin-bottom: 2rem;
}

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

.legal-page h3 {
    font-size: 1.4rem;
    margin-top: 1.5rem;
    margin-bottom: 0.8rem;
    color: #34495e;
}

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

.legal-page a {
    color: #3498db;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .hero-split,
    .values-split,
    .intro-split,
    .split-layout,
    .service-detail-split,
    .testimonial-content,
    .thanks-split,
    .contact-split,
    .team-split {
        flex-direction: column;
    }

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

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

    .service-visual,
    .image-content-narrow,
    .testimonial-image,
    .thanks-image,
    .contact-visual {
        flex: 1 1 100%;
    }

    .nav-links {
        flex-wrap: wrap;
        gap: 1rem;
    }

    .ad-disclosure {
        border-left: none;
        margin-left: 0;
        width: 100%;
        text-align: center;
    }

    .cookie-content {
        flex-direction: column;
        text-align: center;
    }

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

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

    .value-item {
        flex: 1 1 100%;
    }
}