* {
    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.7;
    color: #2c3e50;
    background-color: #ffffff;
    font-size: 16px;
}

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

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

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: #1a5490;
    text-decoration: none;
}

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

.nav-links a {
    color: #2c3e50;
    text-decoration: none;
    font-size: 15px;
    transition: color 0.3s;
}

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

.content-wrapper {
    min-height: calc(100vh - 300px);
}

.narrow-content {
    max-width: 720px;
    margin: 0 auto;
    padding: 0 20px;
}

.wide-content {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-section {
    padding: 60px 0 40px;
}

.hero-content h1 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a2332;
    font-weight: 700;
}

.lead-text {
    font-size: 20px;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 30px;
}

.hero-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin-top: 30px;
}

.content-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 30px 0;
}

.intro-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.intro-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a2332;
}

.intro-section p {
    margin-bottom: 18px;
}

.insight-block {
    padding: 60px 0;
}

.insight-block h2 {
    font-size: 32px;
    margin-bottom: 35px;
    color: #1a2332;
}

.insight-item {
    margin-bottom: 35px;
}

.insight-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.services-preview {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.services-preview h2 {
    font-size: 36px;
    margin-bottom: 15px;
    text-align: center;
    color: #1a2332;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: #4a5568;
    margin-bottom: 50px;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    margin-bottom: 30px;
}

.service-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    border: 1px solid #e9ecef;
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 15px;
    color: #1a2332;
}

.service-card p {
    margin-bottom: 20px;
    color: #4a5568;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 20px;
}

.cta-button {
    background-color: #1a5490;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s;
    font-weight: 600;
}

.cta-button:hover {
    background-color: #143d6e;
}

.service-note {
    text-align: center;
    color: #6c757d;
    font-size: 14px;
    margin-top: 20px;
}

.trust-section {
    padding: 60px 0;
}

.trust-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a2332;
}

.testimonial {
    background-color: #f8f9fa;
    padding: 30px;
    border-left: 4px solid #1a5490;
    margin-bottom: 25px;
    border-radius: 4px;
}

.testimonial p {
    font-size: 18px;
    font-style: italic;
    margin-bottom: 15px;
    color: #2c3e50;
}

.testimonial cite {
    font-style: normal;
    color: #6c757d;
    font-size: 15px;
}

.process-section {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.process-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a2332;
}

.process-steps {
    margin-top: 40px;
}

.step {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.step-number {
    background-color: #1a5490;
    color: #ffffff;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
    flex-shrink: 0;
}

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

.form-section {
    padding: 60px 0;
}

.form-section h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a2332;
}

.contact-form {
    margin-top: 40px;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #cbd5e0;
    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: #1a5490;
}

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

.submit-button:hover {
    background-color: #143d6e;
}

.final-cta {
    padding: 60px 0;
    background-color: #f8f9fa;
}

.final-cta h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a2332;
}

.cta-link {
    display: inline-block;
    background-color: #1a5490;
    color: #ffffff;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 20px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-link:hover {
    background-color: #143d6e;
}

.disclaimer-section {
    padding: 40px 0;
    background-color: #fef6e7;
}

.disclaimer {
    font-size: 14px;
    color: #6c757d;
    line-height: 1.6;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #f0e5c9;
    border-radius: 6px;
}

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

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

.footer-links {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: opacity 0.3s;
}

.footer-links a:hover {
    opacity: 0.8;
}

.footer-text {
    font-size: 14px;
    color: #a0aec0;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #ffffff;
    padding: 25px 20px;
    display: none;
    z-index: 1000;
}

.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 {
    margin: 0;
    font-size: 15px;
}

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

.cookie-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

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

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

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

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

.page-header {
    padding: 60px 0 30px;
    background-color: #f8f9fa;
}

.page-header h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: #1a2332;
}

.about-intro,
.values-section,
.approach-section,
.who-we-help,
.commitment-section {
    padding: 50px 0;
}

.about-intro h2,
.values-section h2,
.approach-section h2,
.who-we-help h2,
.commitment-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a2332;
}

.about-intro p,
.approach-section p,
.who-we-help p,
.commitment-section p {
    margin-bottom: 18px;
}

.value-item {
    margin-bottom: 35px;
}

.value-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #2c3e50;
}

.cta-section {
    padding: 60px 0;
    background-color: #f8f9fa;
    text-align: center;
}

.cta-section h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a2332;
}

.cta-button-link {
    display: inline-block;
    background-color: #1a5490;
    color: #ffffff;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 6px;
    margin-top: 20px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.cta-button-link:hover {
    background-color: #143d6e;
}

.services-detail {
    padding: 40px 0;
}

.service-detail-item {
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid #e9ecef;
}

.service-detail-item:last-child {
    border-bottom: none;
}

.service-detail-item h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a2332;
}

.service-price {
    display: inline-block;
    font-size: 32px;
    font-weight: 700;
    color: #1a5490;
    margin-bottom: 25px;
}

.service-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 25px 0;
}

.service-detail-item h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-detail-item p {
    margin-bottom: 18px;
}

.pricing-note-section {
    padding: 30px 0;
    background-color: #f8f9fa;
}

.pricing-note {
    text-align: center;
    color: #6c757d;
    font-size: 15px;
}

.contact-cta {
    padding: 60px 0;
    text-align: center;
}

.contact-cta h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: #1a2332;
}

.contact-info-section {
    padding: 50px 0;
}

.contact-info-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a2332;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 30px;
}

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

.contact-item p {
    color: #4a5568;
    line-height: 1.8;
}

.contact-note {
    margin-top: 30px;
    padding: 20px;
    background-color: #f8f9fa;
    border-left: 4px solid #1a5490;
    border-radius: 4px;
}

.location-section {
    padding: 50px 0;
    background-color: #f8f9fa;
}

.location-section h2 {
    font-size: 32px;
    margin-bottom: 25px;
    color: #1a2332;
}

.location-section p {
    margin-bottom: 18px;
}

.faq-section {
    padding: 50px 0;
}

.faq-section h2 {
    font-size: 32px;
    margin-bottom: 40px;
    color: #1a2332;
}

.faq-item {
    margin-bottom: 30px;
}

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

.faq-item p {
    color: #4a5568;
}

.thanks-section {
    padding: 60px 0;
}

.thanks-section h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a2332;
    text-align: center;
}

.thanks-message {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
    margin-top: 30px;
}

.thanks-message h2 {
    font-size: 28px;
    margin-top: 30px;
    margin-bottom: 25px;
    color: #1a2332;
}

.next-steps {
    margin: 30px 0;
}

.step-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.step-icon {
    background-color: #1a5490;
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 700;
    flex-shrink: 0;
}

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

.thanks-note {
    margin-top: 30px;
    padding: 20px;
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 6px;
}

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

.secondary-link {
    display: inline-block;
    padding: 16px 35px;
    text-decoration: none;
    border-radius: 6px;
    color: #1a5490;
    border: 2px solid #1a5490;
    font-weight: 600;
    transition: all 0.3s;
}

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

.service-confirmation {
    margin: 20px 0;
    padding: 20px;
    background-color: #e8f4f8;
    border-left: 4px solid #1a5490;
    border-radius: 4px;
}

.service-confirmation strong {
    color: #1a5490;
}

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

.legal-page h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #1a2332;
}

.legal-page h2 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c3e50;
}

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

.legal-page p {
    margin-bottom: 15px;
}

.legal-page ul {
    margin-left: 25px;
    margin-bottom: 20px;
}

.legal-page li {
    margin-bottom: 8px;
}

.legal-page a {
    color: #1a5490;
    text-decoration: underline;
}

.last-updated {
    color: #6c757d;
    font-size: 14px;
    margin-bottom: 30px;
}

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

    .lead-text {
        font-size: 18px;
    }

    .nav-links {
        gap: 15px;
    }

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

    .service-card {
        flex: 1 1 100%;
    }

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

    .cookie-buttons {
        width: 100%;
    }

    .cookie-accept,
    .cookie-reject {
        flex: 1;
    }

    .step {
        flex-direction: column;
    }

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

    .secondary-link {
        width: 100%;
        text-align: center;
    }

    .cta-button-link {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .nav-container {
        flex-direction: column;
        gap: 15px;
    }

    .nav-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}