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

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

.split-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 48px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

.header-left .logo {
    font-size: 28px;
    font-weight: 600;
    color: #2c3e50;
    letter-spacing: -0.5px;
}

.header-right {
    display: flex;
    gap: 32px;
}

.header-right a {
    color: #495057;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s ease;
}

.header-right a:hover {
    color: #2c3e50;
}

.hero-split {
    display: flex;
    min-height: 85vh;
    background-color: #fafbfc;
}

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

.hero-left h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 28px;
    color: #1a202c;
    font-weight: 700;
    letter-spacing: -1px;
}

.hero-left p {
    font-size: 19px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 36px;
    max-width: 540px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

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

.cta-secondary {
    display: inline-block;
    padding: 16px 36px;
    background-color: transparent;
    color: #2c3e50;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border: 2px solid #2c3e50;
    border-radius: 4px;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #2c3e50;
    color: #ffffff;
}

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

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

.intro-left h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 600;
}

.intro-left p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.intro-right {
    flex: 1;
    background-color: #f7f8fa;
}

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

.services-section {
    padding: 96px 48px;
    background-color: #f8f9fa;
}

.services-intro {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 72px;
}

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 600;
}

.services-intro p {
    font-size: 18px;
    color: #4a5568;
    line-height: 1.7;
}

.service-card-split {
    display: flex;
    margin-bottom: 48px;
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

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

.service-content {
    flex: 1;
    padding: 56px 48px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a202c;
    font-weight: 600;
}

.service-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 24px;
}

.service-price {
    font-size: 32px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 24px;
}

.service-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.select-service {
    padding: 14px 28px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease;
    align-self: flex-start;
}

.select-service:hover {
    background-color: #1a252f;
}

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

.form-left {
    flex: 1;
    padding: 72px 64px;
    background-color: #2c3e50;
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.form-left h2 {
    font-size: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.form-left p {
    font-size: 17px;
    line-height: 1.7;
    color: #e2e8f0;
}

.form-right {
    flex: 1;
    padding: 72px 64px;
    background-color: #f8f9fa;
    display: flex;
    align-items: center;
}

.booking-form {
    width: 100%;
    max-width: 520px;
}

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

.form-field label {
    display: block;
    margin-bottom: 8px;
    font-size: 15px;
    font-weight: 500;
    color: #2c3e50;
}

.form-field input,
.form-field textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

.form-field input[readonly] {
    background-color: #e9ecef;
    cursor: not-allowed;
}

.submit-btn {
    width: 100%;
    padding: 16px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

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

.trust-split {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
}

.trust-content {
    flex: 1;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 600;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.trust-image {
    flex: 1;
    background-color: #f1f3f5;
}

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

.disclaimer-section {
    padding: 48px 96px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
    border-bottom: 1px solid #dee2e6;
}

.disclaimer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #6c757d;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.split-footer {
    display: flex;
    justify-content: space-between;
    padding: 64px 48px;
    background-color: #1a202c;
    color: #e2e8f0;
}

.footer-left,
.footer-center,
.footer-right {
    flex: 1;
}

.footer-brand {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #ffffff;
}

.footer-left p {
    font-size: 15px;
    color: #a0aec0;
}

.footer-center h4,
.footer-right h4 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
    color: #ffffff;
}

.footer-center a,
.footer-right a {
    display: block;
    color: #a0aec0;
    text-decoration: none;
    font-size: 14px;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.footer-center a:hover,
.footer-right a:hover {
    color: #ffffff;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #e9ecef;
    padding: 24px 32px;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    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: 32px;
}

.cookie-content p {
    flex: 1;
    font-size: 15px;
    color: #4a5568;
    line-height: 1.6;
}

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

.cookie-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

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

.cookie-btn.accept:hover {
    background-color: #1a252f;
}

.cookie-btn.reject {
    background-color: #e9ecef;
    color: #495057;
}

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

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

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

.hero-content h1 {
    font-size: 46px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a5568;
}

.hero-visual {
    flex: 1;
    background-color: #e9ecef;
}

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

.about-split {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
}

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

.about-content {
    flex: 1;
    padding: 80px 64px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 600;
}

.about-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
    background-color: #f1f3f5;
}

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

.values-section {
    padding: 96px 64px;
    background-color: #f8f9fa;
}

.values-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 56px;
    color: #1a202c;
    font-weight: 600;
}

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

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

.value-item h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.value-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.cta-split {
    padding: 80px 64px;
    background-color: #2c3e50;
    text-align: center;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #ffffff;
    font-weight: 600;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #e2e8f0;
    margin-bottom: 32px;
}

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

.service-detail-split {
    display: flex;
    align-items: stretch;
    border-bottom: 1px solid #e9ecef;
}

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

.service-detail-content {
    flex: 1;
    padding: 80px 64px;
}

.service-detail-content h2 {
    font-size: 34px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 600;
}

.service-detail-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 20px;
}

.service-includes {
    margin: 32px 0;
    padding: 28px;
    background-color: #f8f9fa;
    border-radius: 6px;
}

.service-includes h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.service-includes ul {
    list-style: none;
    padding: 0;
}

.service-includes li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    padding-left: 24px;
    position: relative;
    margin-bottom: 8px;
}

.service-includes li:before {
    content: "•";
    position: absolute;
    left: 8px;
    color: #2c3e50;
    font-weight: 600;
}

.service-price-detail {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 28px;
}

.cta-service {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-service:hover {
    background-color: #1a252f;
}

.service-detail-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.process-section {
    padding: 96px 64px;
    background-color: #f8f9fa;
}

.process-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 64px;
    color: #1a202c;
    font-weight: 600;
}

.process-split {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: #e9ecef;
    margin-bottom: 16px;
}

.process-step h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.process-step p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
}

.contact-split {
    display: flex;
    align-items: stretch;
    background-color: #ffffff;
}

.contact-info {
    flex: 1;
    padding: 80px 64px;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #1a202c;
    font-weight: 600;
}

.contact-block {
    margin-bottom: 36px;
}

.contact-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.contact-block p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
}

.contact-map {
    flex: 1;
    background-color: #e9ecef;
}

.contact-map img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.faq-section {
    padding: 96px 64px;
    background-color: #f8f9fa;
}

.faq-section h2 {
    font-size: 40px;
    text-align: center;
    margin-bottom: 56px;
    color: #1a202c;
    font-weight: 600;
}

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

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

.faq-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.faq-item p {
    font-size: 15px;
    line-height: 1.7;
    color: #4a5568;
}

.thanks-section {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 48px;
    background-color: #f8f9fa;
}

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

.thanks-content h1 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #1a202c;
    font-weight: 700;
}

.thanks-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
}

.thanks-next-steps {
    margin: 48px 0;
    text-align: left;
}

.thanks-next-steps h2 {
    font-size: 24px;
    margin-bottom: 24px;
    color: #2c3e50;
    font-weight: 600;
}

.step-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 20px;
}

.step-icon {
    width: 40px;
    height: 40px;
    background-color: #2c3e50;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    flex-shrink: 0;
}

.step-item p {
    flex: 1;
    font-size: 16px;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    padding-top: 8px;
}

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 40px;
    color: #1a202c;
    font-weight: 700;
}

.legal-content h2 {
    font-size: 26px;
    margin-top: 36px;
    margin-bottom: 16px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content h3 {
    font-size: 20px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
    font-weight: 600;
}

.legal-content p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 16px;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 24px;
}

.legal-content li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 8px;
}

.legal-content a {
    color: #2c3e50;
    text-decoration: underline;
}

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

@media (max-width: 1024px) {
    .hero-split,
    .intro-split,
    .form-split,
    .trust-split,
    .about-split,
    .page-hero-split,
    .service-card-split,
    .service-detail-split,
    .contact-split {
        flex-direction: column;
    }

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

    .split-header {
        flex-direction: column;
        gap: 24px;
        padding: 24px 32px;
    }

    .hero-left,
    .intro-left,
    .form-left,
    .form-right,
    .trust-content,
    .about-content,
    .hero-content,
    .service-content,
    .service-detail-content,
    .contact-info {
        padding: 48px 32px;
    }

    .hero-left h1 {
        font-size: 38px;
    }

    .split-footer {
        flex-direction: column;
        gap: 40px;
    }

    .values-grid,
    .process-split {
        flex-direction: column;
    }

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

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

    .cookie-actions {
        width: 100%;
    }

    .cookie-btn {
        flex: 1;
    }
}

@media (max-width: 640px) {
    .hero-left h1 {
        font-size: 32px;
    }

    .hero-left p,
    .intro-left p,
    .trust-content p,
    .about-content p {
        font-size: 16px;
    }

    .services-intro h2,
    .values-section h2,
    .process-section h2,
    .faq-section h2 {
        font-size: 32px;
    }

    .header-right {
        gap: 20px;
    }

    .header-right a {
        font-size: 14px;
    }

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

    .thanks-actions a {
        width: 100%;
        text-align: center;
    }
}
