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

.ad-disclosure {
    background-color: #f8f9fa;
    text-align: center;
    padding: 8px 20px;
    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: 1000;
}

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

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

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

.nav-links a {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: #2c5f8d;
}

.hero-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.hero-content h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.hero-content p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 35px;
}

.hero-image {
    flex: 1;
    background-color: #e9ecef;
}

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

.cta-button {
    display: inline-block;
    background-color: #2c5f8d;
    color: #ffffff;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #1e4466;
}

.intro-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 60px;
}

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

.intro-content {
    flex: 1;
}

.intro-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.intro-image {
    flex: 1;
    background-color: #e9ecef;
}

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

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

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

.trust-section h2 {
    font-size: 38px;
    text-align: center;
    margin-bottom: 60px;
    color: #1a1a1a;
}

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

.trust-card {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.trust-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #2c5f8d;
}

.trust-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
}

.services-preview {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.services-intro-split {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 60px;
}

.services-text {
    flex: 1;
}

.services-text h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.services-text p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
}

.services-highlight {
    flex: 1;
    display: flex;
    justify-content: center;
}

.highlight-box {
    background-color: #2c5f8d;
    color: #ffffff;
    padding: 50px;
    border-radius: 8px;
    text-align: center;
}

.highlight-stat {
    font-size: 64px;
    font-weight: 700;
    margin-bottom: 10px;
}

.highlight-box p {
    font-size: 16px;
    line-height: 1.6;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card-split {
    display: flex;
    align-items: stretch;
    gap: 50px;
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

.service-card-split.reverse {
    flex-direction: row-reverse;
}

.service-description {
    flex: 2;
}

.service-description h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-features {
    list-style: none;
    padding: 0;
}

.service-features li {
    padding: 8px 0;
    padding-left: 25px;
    position: relative;
    font-size: 15px;
    color: #4a4a4a;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #2c5f8d;
    font-weight: 700;
}

.service-pricing {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.price {
    font-size: 42px;
    font-weight: 700;
    color: #2c5f8d;
    margin-bottom: 20px;
}

.select-service {
    background-color: #2c5f8d;
    color: #ffffff;
    border: none;
    padding: 14px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.select-service:hover {
    background-color: #1e4466;
}

.testimonials-split {
    background-color: #f8f9fa;
    padding: 80px 40px;
}

.testimonial-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    gap: 50px;
}

.testimonial-content {
    flex: 1;
    background-color: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.testimonial-content blockquote {
    font-style: normal;
}

.testimonial-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

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

.form-section {
    padding: 100px 40px;
    max-width: 1400px;
    margin: 0 auto;
}

.form-split {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.form-intro {
    flex: 1;
}

.form-intro h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.form-container {
    flex: 1;
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

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

.form-group input,
.form-group select {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    background-color: #ffffff;
}

.submit-button {
    background-color: #2c5f8d;
    color: #ffffff;
    border: none;
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1e4466;
}

.final-cta-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 100px auto;
    padding: 0 40px;
    gap: 60px;
}

.final-cta-content {
    flex: 1;
}

.final-cta-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: #1a1a1a;
}

.final-cta-content p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 30px;
}

.cta-button-secondary {
    display: inline-block;
    background-color: transparent;
    color: #2c5f8d;
    padding: 16px 40px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid #2c5f8d;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.cta-button-secondary:hover {
    background-color: #2c5f8d;
    color: #ffffff;
}

.final-cta-image {
    flex: 1;
    background-color: #e9ecef;
}

.final-cta-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

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

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

.footer-section {
    flex: 1;
}

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

.footer-section p {
    font-size: 14px;
    line-height: 1.7;
    color: #b8b8b8;
}

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a1a;
    color: #ffffff;
    padding: 20px 40px;
    z-index: 2000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.2);
    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: 40px;
}

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

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

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

.cookie-accept {
    background-color: #2c5f8d;
    color: #ffffff;
}

.cookie-accept:hover {
    background-color: #1e4466;
}

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

.cookie-reject:hover {
    background-color: #333333;
}

.contact-split {
    display: flex;
    gap: 80px;
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 40px;
}

.contact-info {
    flex: 1;
}

.contact-info h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.contact-info p {
    font-size: 17px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.contact-details {
    background-color: #f8f9fa;
    padding: 40px;
    border-radius: 8px;
}

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

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c5f8d;
}

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

.contact-visual {
    flex: 1;
    background-color: #e9ecef;
}

.contact-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

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

.page-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.page-hero p {
    font-size: 18px;
    color: #4a4a4a;
    max-width: 800px;
    margin: 0 auto;
}

.content-section {
    max-width: 1000px;
    margin: 60px auto;
    padding: 0 40px;
}

.content-section h2 {
    font-size: 32px;
    margin-top: 50px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.content-section h3 {
    font-size: 24px;
    margin-top: 35px;
    margin-bottom: 15px;
    color: #2c5f8d;
}

.content-section p {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.content-section ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.content-section ul li {
    font-size: 16px;
    line-height: 1.8;
    color: #4a4a4a;
    margin-bottom: 10px;
}

.about-split {
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 80px auto;
    padding: 0 40px;
    gap: 60px;
}

.about-content {
    flex: 1;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 25px;
    color: #1a1a1a;
}

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

.about-image {
    flex: 1;
    background-color: #e9ecef;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

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

.service-item-split {
    display: flex;
    gap: 50px;
    background-color: #ffffff;
    padding: 40px;
    border: 1px solid #e9ecef;
    border-radius: 8px;
}

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

.service-info {
    flex: 2;
}

.service-info h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: #1a1a1a;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.service-price-box {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background-color: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
}

.service-price-box .price {
    font-size: 42px;
    font-weight: 700;
    color: #2c5f8d;
}

.thanks-container {
    max-width: 800px;
    margin: 100px auto;
    padding: 60px 40px;
    text-align: center;
    background-color: #f8f9fa;
    border-radius: 8px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 25px;
    color: #2c5f8d;
}

.thanks-container p {
    font-size: 18px;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 20px;
}

.thanks-container .service-selected {
    font-weight: 600;
    color: #2c5f8d;
}

@media (max-width: 768px) {
    .hero-split,
    .intro-split,
    .services-intro-split,
    .form-split,
    .final-cta-split,
    .contact-split,
    .about-split,
    .service-card-split,
    .service-item-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .service-card-split.reverse,
    .service-item-split.reverse {
        flex-direction: column;
    }

    .trust-grid,
    .testimonial-container {
        flex-direction: column;
    }

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

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

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

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

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