* {
    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;
    text-align: center;
    padding: 8px 16px;
    font-size: 12px;
    color: #6c757d;
    border-bottom: 1px solid #dee2e6;
}

.header-split {
    background-color: #ffffff;
    border-bottom: 1px solid #e8ecef;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
    letter-spacing: -0.5px;
}

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

.main-nav a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 8px 0;
}

.main-nav a:hover {
    color: #1a5490;
}

.hero-split {
    display: flex;
    min-height: 600px;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.hero-image {
    flex: 1;
    min-width: 300px;
    background-color: #f0f4f8;
    overflow: hidden;
}

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

.hero-text {
    flex: 1;
    min-width: 300px;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #1a5490;
    color: #ffffff;
}

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

.hero-text p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
    max-width: 520px;
}

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

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

.cta-secondary {
    display: inline-block;
    background-color: transparent;
    color: #1a5490;
    padding: 14px 38px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    border: 2px solid #1a5490;
    transition: background-color 0.3s ease, color 0.3s ease;
    align-self: flex-start;
}

.cta-secondary:hover {
    background-color: #1a5490;
    color: #ffffff;
}

.content-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

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

.split-text {
    flex: 1;
    min-width: 300px;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a5490;
    line-height: 1.3;
}

.split-text p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #4a5568;
    max-width: 560px;
}

.split-image {
    flex: 1;
    min-width: 300px;
    background-color: #f0f4f8;
    overflow: hidden;
}

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

.services-showcase {
    background-color: #f7f9fb;
    padding: 80px 40px;
}

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

.services-intro h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a5490;
}

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

.services-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.service-card {
    background-color: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 320px;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}

.service-card img {
    width: 100%;
    height: 240px;
    background-color: #e2e8f0;
}

.service-card h3 {
    font-size: 22px;
    margin: 24px 24px 12px;
    color: #1a5490;
}

.service-card p {
    font-size: 15px;
    margin: 0 24px 16px;
    color: #4a5568;
    flex-grow: 1;
}

.service-price {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
    margin: 0 24px 16px;
}

.service-select {
    background-color: #1a5490;
    color: #ffffff;
    border: none;
    padding: 14px 24px;
    margin: 0 24px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.service-select:hover {
    background-color: #13416d;
}

.service-card.selected {
    border: 3px solid #1a5490;
}

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

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

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

.form-container > p {
    text-align: center;
    margin-bottom: 40px;
    color: #4a5568;
    font-size: 17px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e2e8f0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1a5490;
}

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

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

.submit-btn:hover {
    background-color: #13416d;
}

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

.trust-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a5490;
    text-align: center;
}

.testimonials {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    justify-content: center;
}

.testimonial {
    background-color: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
    flex: 1;
    min-width: 280px;
    max-width: 380px;
}

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

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

.site-footer {
    background-color: #2c3e50;
    color: #ffffff;
    padding: 60px 40px 20px;
}

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

.footer-column {
    flex: 1;
    min-width: 240px;
}

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

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

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

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

.disclaimer {
    font-size: 13px;
    line-height: 1.6;
    color: #cbd5e0;
}

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

.footer-bottom p {
    font-size: 14px;
    color: #cbd5e0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 24px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
    z-index: 200;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 280px;
    margin: 0;
    font-size: 15px;
}

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

.cookie-accept,
.cookie-reject {
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.cookie-accept {
    background-color: #1a5490;
    color: #ffffff;
}

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

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

.cookie-reject:hover {
    opacity: 0.8;
}

.page-hero {
    background-color: #1a5490;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.page-hero h1 {
    font-size: 52px;
    margin-bottom: 16px;
}

.page-hero p {
    font-size: 20px;
    opacity: 0.95;
}

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

.values-section h2 {
    font-size: 42px;
    margin-bottom: 50px;
    color: #1a5490;
    text-align: center;
}

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

.value-item {
    flex: 1;
    min-width: 260px;
    padding: 32px;
    background-color: #f7f9fb;
    border-radius: 8px;
}

.value-item h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: #1a5490;
}

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

.cta-section {
    background-color: #f7f9fb;
    padding: 80px 40px;
    text-align: center;
}

.cta-section h2 {
    font-size: 42px;
    margin-bottom: 16px;
    color: #1a5490;
}

.cta-section p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #4a5568;
}

.services-detail {
    background-color: #ffffff;
    padding: 60px 40px;
}

.service-detail-item {
    display: flex;
    max-width: 1400px;
    margin: 0 auto 80px;
    flex-wrap: wrap;
    align-items: center;
}

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

.service-detail-content {
    flex: 1;
    min-width: 300px;
    padding: 40px 60px;
}

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

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

.service-price-large {
    font-size: 28px;
    font-weight: 700;
    color: #1a5490;
    margin: 24px 0;
}

.service-detail-image {
    flex: 1;
    min-width: 300px;
    background-color: #f0f4f8;
    overflow: hidden;
}

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

.contact-split {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 60px;
    background-color: #f7f9fb;
}

.contact-info h2 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a5490;
}

.contact-info > p {
    font-size: 17px;
    margin-bottom: 40px;
    color: #4a5568;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-item h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #1a5490;
}

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

.contact-map {
    flex: 1;
    min-width: 300px;
    background-color: #e2e8f0;
    overflow: hidden;
}

.contact-map img {
    width: 100%;
    height: 100%;
    display: block;
}

.contact-cta {
    background-color: #1a5490;
    color: #ffffff;
    padding: 80px 40px;
    text-align: center;
}

.contact-cta h2 {
    font-size: 42px;
    margin-bottom: 16px;
}

.contact-cta p {
    font-size: 18px;
    margin-bottom: 32px;
    opacity: 0.95;
}

.thanks-page {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background-color: #f7f9fb;
}

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

.thanks-content h1 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #1a5490;
}

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

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

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

.legal-page h1 {
    font-size: 42px;
    margin-bottom: 32px;
    color: #1a5490;
}

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

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

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

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

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

.legal-page em {
    display: block;
    margin-top: 32px;
    color: #718096;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 36px;
    }

    .header-content {
        padding: 16px 20px;
    }

    .main-nav {
        gap: 20px;
    }

    .hero-text,
    .split-text {
        padding: 40px 30px;
    }

    .services-showcase,
    .trust-section,
    .form-section,
    .values-section,
    .cta-section {
        padding: 50px 20px;
    }

    .page-hero {
        padding: 50px 20px;
    }

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

    .service-detail-content {
        padding: 30px 20px;
    }

    .contact-info {
        padding: 40px 30px;
    }

    .legal-page {
        padding: 40px 20px;
    }
}