* {
    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: #1f2937;
    background: #ffffff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.ad-disclosure {
    background: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
}

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e5e7eb;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #1f2937;
}

.nav-links {
    display: flex;
    gap: 32px;
}

.nav-links a {
    text-decoration: none;
    color: #6b7280;
    font-weight: 500;
    transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    color: #2563eb;
}

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

.hero-content {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: #f9fafb;
}

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

.hero-text p {
    font-size: 20px;
    color: #4b5563;
    margin-bottom: 32px;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.2s;
}

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

.hero-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

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

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

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

.value-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.value-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.value-content h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #111827;
}

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

.feature-list {
    list-style: none;
}

.feature-list li {
    padding: 12px 0 12px 32px;
    position: relative;
    font-size: 17px;
    color: #374151;
}

.feature-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #16a34a;
    font-weight: bold;
    font-size: 20px;
}

.stats-section {
    background: #1e293b;
    padding: 80px 24px;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 48px;
}

.stat-item {
    text-align: center;
    flex: 1;
}

.stat-number {
    font-size: 56px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 16px;
    color: #cbd5e1;
    line-height: 1.5;
}

.services-overview {
    padding: 100px 24px;
    background: #ffffff;
}

.section-header {
    text-align: center;
    margin-bottom: 64px;
}

.section-header h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #111827;
}

.section-header p {
    font-size: 19px;
    color: #6b7280;
}

.services-grid {
    display: flex;
    gap: 32px;
    flex-wrap: wrap;
}

.service-card {
    flex: 1;
    min-width: 260px;
    background: #f9fafb;
    padding: 36px 28px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.service-icon {
    width: 72px;
    height: 72px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #111827;
}

.service-card p {
    font-size: 16px;
    color: #6b7280;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-price {
    font-size: 28px;
    font-weight: 700;
    color: #2563eb;
    margin-bottom: 20px;
}

.btn-select {
    width: 100%;
    background: #ffffff;
    border: 2px solid #2563eb;
    color: #2563eb;
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-select:hover {
    background: #2563eb;
    color: #ffffff;
}

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

.process-content {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
}

.process-content h2 {
    font-size: 40px;
    margin-bottom: 48px;
    color: #111827;
}

.process-steps {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.step {
    display: flex;
    gap: 24px;
}

.step-number {
    font-size: 32px;
    font-weight: 700;
    color: #e5e7eb;
    flex-shrink: 0;
}

.step h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #111827;
}

.step p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.process-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.process-image img {
    width: 100%;
    height: 100%;
    display: block;
}

.testimonials {
    padding: 100px 24px;
    background: #f9fafb;
}

.testimonials h2 {
    text-align: center;
    font-size: 42px;
    margin-bottom: 64px;
    color: #111827;
}

.testimonial-grid {
    display: flex;
    gap: 40px;
}

.testimonial-card {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.testimonial-card p {
    font-size: 18px;
    line-height: 1.7;
    color: #374151;
    margin-bottom: 24px;
    font-style: italic;
}

.testimonial-author strong {
    display: block;
    font-size: 17px;
    color: #111827;
    margin-bottom: 4px;
}

.testimonial-author span {
    font-size: 15px;
    color: #6b7280;
}

.form-section {
    padding: 100px 24px;
    background: #ffffff;
}

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

.form-info {
    flex: 1;
}

.form-info h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #111827;
}

.form-info p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.7;
}

.form-benefits {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 17px;
    color: #374151;
}

.form-container {
    flex: 1;
    background: #f9fafb;
    padding: 48px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #374151;
}

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

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

.btn-submit {
    width: 100%;
    background: #2563eb;
    color: #ffffff;
    padding: 14px 32px;
    border: none;
    border-radius: 6px;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

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

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

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

.trust-image {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.trust-image img {
    width: 100%;
    height: 100%;
    display: block;
}

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

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 40px;
    color: #111827;
}

.trust-points {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.trust-point h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #111827;
}

.trust-point p {
    font-size: 16px;
    color: #6b7280;
    line-height: 1.6;
}

.disclaimer-section {
    padding: 80px 24px;
    background: #fef3c7;
}

.disclaimer-box {
    max-width: 900px;
    margin: 0 auto;
}

.disclaimer-box h3 {
    font-size: 22px;
    margin-bottom: 16px;
    color: #92400e;
}

.disclaimer-box p {
    font-size: 15px;
    color: #78350f;
    line-height: 1.7;
}

.main-footer {
    background: #1f2937;
    color: #e5e7eb;
    padding: 60px 24px 24px;
}

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

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

.footer-section p {
    font-size: 15px;
    line-height: 1.6;
    color: #9ca3af;
}

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

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

.footer-section ul li a {
    color: #9ca3af;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 24px;
    border-top: 1px solid #374151;
    text-align: center;
    font-size: 14px;
    color: #9ca3af;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1f2937;
    color: #ffffff;
    padding: 24px;
    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;
    margin: 0;
    font-size: 15px;
}

.cookie-content a {
    color: #60a5fa;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-accept {
    background: #16a34a;
    color: #ffffff;
}

.btn-accept:hover {
    background: #15803d;
}

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

.btn-reject:hover {
    background: #b91c1c;
}

.thanks-container {
    max-width: 700px;
    margin: 100px auto;
    text-align: center;
    padding: 0 24px;
}

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

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #111827;
}

.thanks-container p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    line-height: 1.7;
}

.thanks-info {
    background: #f9fafb;
    padding: 32px;
    border-radius: 8px;
    margin-bottom: 32px;
}

.thanks-info strong {
    display: block;
    margin-bottom: 8px;
    color: #111827;
}

@media (max-width: 768px) {
    .hero-split,
    .value-split,
    .process-split,
    .trust-split,
    .form-split {
        flex-direction: column;
    }

    .hero-text h1 {
        font-size: 36px;
    }

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

    .stats-grid {
        flex-direction: column;
        gap: 32px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 32px;
    }

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

    .nav-links {
        gap: 16px;
    }
}