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

.ad-disclosure {
    background-color: #fef3c7;
    color: #92400e;
    text-align: center;
    padding: 8px 16px;
    font-size: 13px;
    border-bottom: 1px solid #fbbf24;
}

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

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

.logo {
    font-size: 22px;
    font-weight: 700;
    color: #3b82f6;
}

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

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

.nav-links a:hover {
    color: #3b82f6;
}

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

.hero-content,
.hero-image {
    flex: 1;
}

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

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

.hero-text p {
    font-size: 18px;
    color: #6b7280;
    margin-bottom: 32px;
    max-width: 540px;
}

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

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

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

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

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

.container-narrow {
    max-width: 800px;
    margin: 0 auto;
}

.intro-section h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 28px;
    color: #111827;
}

.intro-section p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 20px;
}

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

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

.feature-image,
.feature-text {
    flex: 1;
}

.feature-image {
    position: relative;
    overflow: hidden;
}

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

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

.feature-text h3 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #111827;
}

.feature-text p {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 16px;
}

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

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

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

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

.service-card {
    flex: 1 1 calc(33.333% - 32px);
    min-width: 300px;
    background-color: #ffffff;
    padding: 40px 32px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

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

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

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #3b82f6;
    margin-bottom: 20px;
}

.btn-select-service {
    width: 100%;
    padding: 14px 24px;
    background-color: #f3f4f6;
    border: 2px solid #d1d5db;
    color: #374151;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-select-service:hover {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
}

.btn-select-service.selected {
    background-color: #3b82f6;
    border-color: #3b82f6;
    color: #ffffff;
}

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

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

.benefits-list {
    max-width: 900px;
    margin: 0 auto;
}

.benefit-item {
    display: flex;
    gap: 32px;
    margin-bottom: 48px;
}

.benefit-number {
    flex-shrink: 0;
    width: 60px;
    height: 60px;
    background-color: #3b82f6;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
}

.benefit-content h4 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #111827;
}

.benefit-content p {
    font-size: 16px;
    color: #4b5563;
    line-height: 1.7;
}

.cta-inline {
    padding: 80px 24px;
    background-color: #eff6ff;
}

.cta-inline h2 {
    font-size: 36px;
    margin-bottom: 16px;
    text-align: center;
    color: #111827;
}

.cta-inline p {
    font-size: 17px;
    color: #4b5563;
    text-align: center;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.form-container h2 {
    font-size: 38px;
    margin-bottom: 16px;
    text-align: center;
    color: #111827;
}

.form-intro {
    font-size: 17px;
    color: #6b7280;
    text-align: center;
    margin-bottom: 40px;
}

.contact-form {
    background-color: #f9fafb;
    padding: 48px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    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: #3b82f6;
}

.checkbox-group {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 4px;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: 400;
    font-size: 14px;
}

.checkbox-group a {
    color: #3b82f6;
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    padding: 16px 32px;
    background-color: #3b82f6;
    color: #ffffff;
    border: none;
    border-radius: 6px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.2s;
}

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

.trust-section {
    padding: 80px 24px;
    background-color: #f3f4f6;
    text-align: center;
}

.trust-section h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: #111827;
}

.trust-section p {
    font-size: 17px;
    color: #6b7280;
    max-width: 800px;
    margin: 0 auto;
}

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

.disclaimer {
    font-size: 14px;
    color: #78350f;
    line-height: 1.7;
    text-align: center;
}

.main-footer {
    background-color: #111827;
    color: #d1d5db;
    padding: 60px 24px 24px;
}

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

.footer-column {
    flex: 1;
}

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

.footer-column p {
    font-size: 15px;
    line-height: 1.6;
}

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

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

.footer-column a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1f2937;
    color: #ffffff;
    padding: 24px;
    z-index: 1000;
    display: none;
}

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

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

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

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

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

.btn-cookie {
    padding: 12px 24px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.2s;
}

.btn-cookie.accept {
    background-color: #10b981;
    color: #ffffff;
}

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

.btn-cookie:hover {
    opacity: 0.9;
}

.thanks-page {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 24px;
}

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

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

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

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

.page-header {
    background-color: #f9fafb;
    padding: 80px 24px 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    margin-bottom: 16px;
    color: #111827;
}

.page-header p {
    font-size: 18px;
    color: #6b7280;
    max-width: 700px;
    margin: 0 auto;
}

.page-content {
    padding: 80px 24px;
    background-color: #ffffff;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.content-wrapper h2 {
    font-size: 32px;
    margin-top: 48px;
    margin-bottom: 20px;
    color: #111827;
}

.content-wrapper h3 {
    font-size: 24px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: #111827;
}

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

.content-wrapper ul {
    margin-bottom: 24px;
    padding-left: 32px;
}

.content-wrapper li {
    font-size: 17px;
    color: #4b5563;
    margin-bottom: 12px;
    line-height: 1.7;
}

.contact-info-section {
    padding: 100px 24px;
    background-color: #ffffff;
}

.contact-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    gap: 60px;
}

.contact-column {
    flex: 1;
}

.contact-column h2 {
    font-size: 32px;
    margin-bottom: 32px;
    color: #111827;
}

.contact-item {
    margin-bottom: 32px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: #111827;
}

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

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

    .split-feature.reverse {
        flex-direction: column;
    }

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

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

    .service-card {
        min-width: 100%;
    }

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

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

    .contact-grid {
        flex-direction: column;
        gap: 40px;
    }

    .benefit-item {
        flex-direction: column;
        gap: 16px;
    }

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