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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #2d3748;
    background: #ffffff;
}

.ad-notice {
    background: #f7fafc;
    border-bottom: 1px solid #e2e8f0;
    padding: 8px 20px;
    text-align: center;
    font-size: 13px;
    color: #718096;
}

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 40px;
    background: #ffffff;
    border-bottom: 1px solid #e2e8f0;
}

.nav-left .logo {
    font-size: 22px;
    font-weight: 700;
    color: #1a202c;
    text-decoration: none;
}

.nav-right {
    display: flex;
    gap: 30px;
}

.nav-right a {
    color: #4a5568;
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #2b6cb0;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-content p {
    font-size: 19px;
    line-height: 1.7;
    margin-bottom: 36px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: #ffffff;
    color: #667eea;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 700;
    border-radius: 6px;
    font-size: 17px;
    transition: transform 0.2s, box-shadow 0.2s;
    align-self: flex-start;
}

.cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.hero-visual {
    flex: 1;
    height: 600px;
    overflow: hidden;
}

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

.intro-reverse {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    background: #f7fafc;
}

.intro-image {
    flex: 1;
    height: 500px;
}

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

.intro-text {
    flex: 1;
    padding: 60px 70px;
}

.intro-text h2 {
    font-size: 38px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 700;
}

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

.services-preview {
    padding: 90px 40px;
    background: #ffffff;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 800;
}

.section-header-center p {
    font-size: 18px;
    color: #718096;
}

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

.service-card {
    display: flex;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.service-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-visual {
    flex: 0 0 400px;
    height: 280px;
}

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

.service-details {
    flex: 1;
    padding: 40px 45px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-details h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: #1a202c;
    font-weight: 700;
}

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

.price {
    font-size: 32px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 20px;
}

.select-service {
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
    align-self: flex-start;
}

.select-service:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.trust-markers {
    padding: 70px 40px;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: #ffffff;
}

.trust-content {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
}

.trust-content h2 {
    font-size: 38px;
    margin-bottom: 50px;
    font-weight: 700;
}

.trust-stats {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-number {
    font-size: 52px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: #cbd5e0;
    text-align: center;
}

.testimonials-inline {
    padding: 90px 40px;
    background: #f7fafc;
}

.testimonials-inline h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 700;
}

.testimonial-row {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto 30px;
}

.testimonial-card {
    flex: 1;
    background: #ffffff;
    padding: 35px;
    border-left: 4px solid #667eea;
    border-radius: 6px;
}

.testimonial-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-card cite {
    font-size: 14px;
    color: #718096;
    font-weight: 600;
    font-style: normal;
}

.process-steps {
    padding: 90px 40px;
    background: #ffffff;
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header h2 {
    font-size: 42px;
    color: #1a202c;
    font-weight: 800;
}

.steps-layout {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.step-block {
    flex: 1;
    padding: 40px 30px;
    background: linear-gradient(135deg, #f7fafc 0%, #edf2f7 100%);
    border-radius: 8px;
    text-align: center;
}

.step-num {
    display: block;
    font-size: 48px;
    font-weight: 800;
    color: #667eea;
    margin-bottom: 20px;
}

.step-block h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 700;
}

.step-block p {
    font-size: 15px;
    line-height: 1.6;
    color: #4a5568;
}

.form-section {
    padding: 90px 40px;
    background: #f7fafc;
}

.form-container-split {
    display: flex;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: #1a202c;
    font-weight: 800;
}

.form-intro p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 32px;
}

.form-benefits {
    list-style: none;
}

.form-benefits li {
    font-size: 16px;
    color: #4a5568;
    margin-bottom: 12px;
    padding-left: 28px;
    position: relative;
}

.form-benefits li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #667eea;
    font-weight: 700;
    font-size: 18px;
}

.form-wrapper {
    flex: 1;
    background: #ffffff;
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

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

.form-row label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2d3748;
    font-size: 15px;
}

.form-row input,
.form-row select,
.form-row textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
    outline: none;
    border-color: #667eea;
}

.submit-btn {
    width: 100%;
    background: #667eea;
    color: #ffffff;
    border: none;
    padding: 16px;
    font-size: 17px;
    font-weight: 700;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.submit-btn:hover {
    background: #5a67d8;
    transform: translateY(-2px);
}

.faq-section {
    padding: 90px 40px;
    background: #ffffff;
}

.faq-section h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 60px;
    color: #1a202c;
    font-weight: 800;
}

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

.faq-item {
    flex: 0 0 calc(50% - 15px);
    background: #f7fafc;
    padding: 35px;
    border-radius: 8px;
}

.faq-item h3 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1a202c;
    font-weight: 700;
}

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

.disclaimer-section {
    padding: 50px 40px;
    background: #edf2f7;
    border-top: 2px solid #cbd5e0;
}

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

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px 40px;
    background: #1a202c;
    color: #cbd5e0;
    gap: 60px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 10px;
}

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

.footer-column ul li {
    margin-bottom: 10px;
}

.footer-column ul li a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

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

.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #667eea;
    padding: 18px;
    text-align: center;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    z-index: 100;
}

.sticky-cta a {
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    font-size: 17px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2d3748;
    padding: 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
    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: 30px;
}

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

.cookie-content p a {
    color: #90cdf4;
    text-decoration: underline;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s, transform 0.2s;
}

.cookie-btn.accept {
    background: #48bb78;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background: #38a169;
    transform: translateY(-2px);
}

.cookie-btn.reject {
    background: #718096;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background: #4a5568;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .hero-split,
    .intro-reverse,
    .service-card,
    .service-card:nth-child(even),
    .testimonial-row,
    .steps-layout,
    .form-container-split,
    .footer-split {
        flex-direction: column;
    }

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

    .service-visual {
        flex: 0 0 200px;
        height: 200px;
    }

    .trust-stats {
        flex-direction: column;
        gap: 30px;
    }

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

    .split-nav {
        flex-direction: column;
        gap: 20px;
    }

    .nav-right {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

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