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

.ad-notice {
    background-color: #f8f9fa;
    color: #6c757d;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #dee2e6;
}

.main-nav {
    background-color: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #0f3460;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 32px;
}

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

.nav-menu a:hover {
    color: #0f3460;
}

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

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

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: #0f3460;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 32px;
    color: #4a4a5e;
}

.hero-image {
    flex: 1;
    display: flex;
}

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

.cta-button {
    display: inline-block;
    background-color: #0f3460;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
}

.cta-button:hover {
    background-color: #16213e;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

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

.intro-image {
    flex: 1;
    display: flex;
}

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

.intro-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
}

.intro-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #0f3460;
}

.intro-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a4a5e;
}

.services-overview {
    padding: 80px 40px;
    background-color: #ffffff;
}

.section-header-centered {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-header-centered h2 {
    font-size: 40px;
    margin-bottom: 16px;
    color: #0f3460;
}

.section-header-centered p {
    font-size: 18px;
    color: #4a4a5e;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.service-card-split {
    display: flex;
    min-height: 400px;
}

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

.service-image {
    flex: 1;
    display: flex;
}

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

.service-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: #f8f9fa;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #0f3460;
}

.service-info p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #4a4a5e;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #0f3460;
    margin-top: 12px;
}

.booking-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.booking-container-split {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.booking-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.booking-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #0f3460;
}

.booking-info p {
    font-size: 18px;
    margin-bottom: 24px;
    color: #4a4a5e;
}

.feature-list {
    list-style: none;
    margin-top: 20px;
}

.feature-list li {
    font-size: 16px;
    padding: 12px 0;
    padding-left: 28px;
    position: relative;
    color: #2a2a3e;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #0f3460;
    font-weight: 700;
}

.booking-form-wrapper {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #2a2a3e;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    font-size: 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-family: inherit;
}

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

.submit-btn {
    background-color: #0f3460;
    color: #ffffff;
    padding: 16px 32px;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.trust-section {
    padding: 80px 40px;
    background-color: #ffffff;
}

.trust-content {
    max-width: 1200px;
    margin: 0 auto;
}

.trust-content h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f3460;
}

.trust-points-split {
    display: flex;
    gap: 40px;
}

.trust-point {
    flex: 1;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.trust-point h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #0f3460;
}

.trust-point p {
    font-size: 16px;
    color: #4a4a5e;
}

.main-footer {
    background-color: #1a1a2e;
    color: #e8e8ee;
    padding: 60px 40px 20px;
}

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 14px;
    line-height: 1.6;
    color: #b8b8c8;
}

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section ul li a {
    color: #b8b8c8;
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.footer-bottom p {
    font-size: 14px;
    color: #b8b8c8;
    margin-bottom: 8px;
}

.disclaimer {
    font-size: 12px;
    color: #8888a8;
    max-width: 900px;
    margin: 16px auto 0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 24px 40px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2);
    z-index: 2000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    font-size: 14px;
    line-height: 1.6;
}

.cookie-content a {
    color: #ffffff;
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 16px;
}

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #0f3460;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #16213e;
}

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

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

.page-hero-split {
    display: flex;
    flex-direction: column;
    min-height: 400px;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px 40px;
    background-color: #f8f9fa;
}

.hero-text h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #0f3460;
}

.hero-text p {
    font-size: 20px;
    color: #4a4a5e;
}

.hero-visual {
    flex: 1;
    min-height: 300px;
    display: flex;
}

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

.story-split {
    display: flex;
    min-height: 500px;
}

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

.story-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #0f3460;
}

.story-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a4a5e;
}

.story-image {
    flex: 1;
    display: flex;
}

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

.values-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f3460;
}

.values-split-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.value-card-horizontal {
    display: flex;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 8px;
}

.value-text h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #0f3460;
}

.value-text p {
    font-size: 16px;
    color: #4a4a5e;
}

.approach-split {
    display: flex;
    min-height: 500px;
}

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

.approach-image {
    flex: 1;
    display: flex;
}

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

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

.approach-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #0f3460;
}

.approach-content p {
    font-size: 18px;
    margin-bottom: 16px;
    color: #4a4a5e;
}

.team-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

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

.team-intro h2 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #0f3460;
}

.team-intro p {
    font-size: 18px;
    color: #4a4a5e;
}

.cta-about-split {
    display: flex;
    min-height: 500px;
}

.cta-about-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: #0f3460;
}

.cta-about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #ffffff;
}

.cta-about-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #e8e8ee;
}

.cta-about-content .cta-button {
    background-color: #ffffff;
    color: #0f3460;
}

.cta-about-content .cta-button:hover {
    background-color: #f8f9fa;
}

.cta-about-visual {
    flex: 1;
    display: flex;
}

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

.services-page-hero {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #0f3460;
}

.services-hero-content p {
    font-size: 20px;
    color: #4a4a5e;
}

.services-detailed {
    max-width: 1400px;
    margin: 0 auto;
}

.service-detail-split {
    display: flex;
    min-height: 500px;
}

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

.service-detail-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px;
    background-color: #ffffff;
}

.service-detail-info h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #0f3460;
}

.service-detail-info p {
    font-size: 16px;
    margin-bottom: 24px;
    color: #4a4a5e;
}

.service-features {
    margin-bottom: 32px;
}

.service-features h4 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2a2a3e;
}

.service-features ul {
    list-style: none;
    margin-left: 0;
}

.service-features ul li {
    font-size: 15px;
    padding: 8px 0;
    padding-left: 24px;
    position: relative;
    color: #4a4a5e;
}

.service-features ul li:before {
    content: "•";
    position: absolute;
    left: 0;
    color: #0f3460;
    font-weight: 700;
    font-size: 20px;
}

.service-price-box {
    border-top: 2px solid #e8e8ee;
    padding-top: 24px;
}

.price-large {
    font-size: 36px;
    font-weight: 700;
    color: #0f3460;
    margin-bottom: 8px;
}

.price-period {
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 20px;
}

.service-cta {
    display: inline-block;
    background-color: #0f3460;
    color: #ffffff;
    padding: 14px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.service-cta:hover {
    background-color: #16213e;
}

.service-detail-image {
    flex: 1;
    display: flex;
}

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

.additional-services {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.additional-services h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f3460;
}

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

.additional-item {
    flex: 1;
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
}

.additional-item h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #0f3460;
}

.additional-item p {
    font-size: 16px;
    color: #4a4a5e;
}

.contact-hero {
    padding: 80px 40px;
    background-color: #f8f9fa;
    text-align: center;
}

.contact-hero h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #0f3460;
}

.contact-hero p {
    font-size: 20px;
    color: #4a4a5e;
}

.contact-main-split {
    display: flex;
    min-height: 700px;
}

.contact-info-side {
    flex: 1;
    padding: 60px;
    background-color: #ffffff;
}

.contact-info-side h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #0f3460;
}

.contact-detail-block {
    margin-bottom: 40px;
}

.contact-detail-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f3460;
}

.contact-detail-block p {
    font-size: 16px;
    line-height: 1.6;
    color: #4a4a5e;
}

.contact-note {
    margin-top: 12px;
    font-size: 14px;
    font-style: italic;
    color: #6c757d;
}

.contact-visual-side {
    flex: 1;
    display: flex;
}

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

.faq-section {
    padding: 80px 40px;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 60px;
    color: #0f3460;
}

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

.faq-item {
    flex: 0 0 calc(50% - 16px);
    padding: 32px;
    background-color: #ffffff;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #0f3460;
}

.faq-item p {
    font-size: 16px;
    color: #4a4a5e;
}

.thanks-container {
    padding: 80px 40px;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background-color: #0f3460;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    margin: 0 auto 32px;
}

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 24px;
    color: #0f3460;
}

.thanks-message {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a4a5e;
}

.selected-service {
    font-size: 16px;
    padding: 16px;
    background-color: #f8f9fa;
    border-radius: 8px;
    margin-bottom: 40px;
}

.thanks-next-steps {
    margin: 60px 0;
}

.thanks-next-steps h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #0f3460;
}

.steps-grid {
    display: flex;
    gap: 32px;
    margin-bottom: 60px;
}

.step-item {
    flex: 1;
    padding: 32px;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: #0f3460;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: 700;
    margin: 0 auto 20px;
}

.step-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #0f3460;
}

.step-item p {
    font-size: 15px;
    color: #4a4a5e;
}

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

.btn-primary {
    display: inline-block;
    background-color: #0f3460;
    color: #ffffff;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
}

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

.btn-secondary {
    display: inline-block;
    background-color: transparent;
    color: #0f3460;
    padding: 16px 32px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #0f3460;
    border-radius: 4px;
    transition: all 0.3s;
}

.btn-secondary:hover {
    background-color: #0f3460;
    color: #ffffff;
}

.legal-page {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 40px;
}

.legal-page h1 {
    font-size: 40px;
    margin-bottom: 32px;
    color: #0f3460;
}

.legal-page h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 16px;
    color: #0f3460;
}

.legal-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #0f3460;
}

.legal-page h4 {
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
    color: #2a2a3e;
}

.legal-page p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 16px;
    color: #4a4a5e;
}

.legal-page ul {
    margin-left: 24px;
    margin-bottom: 16px;
}

.legal-page ul li {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 8px;
    color: #4a4a5e;
}

.legal-page a {
    color: #0f3460;
    text-decoration: underline;
}

.legal-page a:hover {
    color: #16213e;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .story-split,
    .approach-split,
    .cta-about-split,
    .service-card-split,
    .service-detail-split,
    .booking-container-split,
    .contact-main-split {
        flex-direction: column;
    }

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

    .nav-menu {
        gap: 16px;
        font-size: 14px;
    }

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

    .trust-points-split,
    .additional-grid,
    .steps-grid {
        flex-direction: column;
    }

    .faq-item {
        flex: 0 0 100%;
    }

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

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

    .cookie-buttons {
        justify-content: center;
    }
}