* {
    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;
}

img {
    object-fit: cover;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #ffffff;
    border-bottom: 1px solid #e9ecef;
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

.nav-right a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #3498db;
}

.hero-split {
    display: flex;
    min-height: 600px;
    background-color: #f8f9fa;
}

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

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

.hero-subtitle {
    font-size: 20px;
    color: #6c757d;
    margin-bottom: 32px;
    max-width: 500px;
}

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

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

.cta-primary {
    display: inline-block;
    padding: 16px 36px;
    background-color: #2c3e50;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: background-color 0.3s;
    align-self: flex-start;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

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

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

.value-left {
    flex: 1;
    background-color: #d6d8db;
}

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

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

.value-right h2 {
    font-size: 36px;
    margin-bottom: 24px;
    color: #1a252f;
}

.value-right p {
    margin-bottom: 16px;
    font-size: 17px;
    color: #495057;
}

.services-preview {
    padding: 80px 60px;
    background-color: #ffffff;
}

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

.section-header-center h2 {
    font-size: 42px;
    margin-bottom: 12px;
    color: #1a252f;
}

.section-header-center p {
    font-size: 18px;
    color: #6c757d;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

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

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

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

.price {
    font-size: 28px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 20px 16px 20px;
}

.select-service {
    padding: 12px 24px;
    background-color: #2c3e50;
    color: #ffffff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
    margin: 0 20px 20px 20px;
    border-radius: 4px;
}

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

.form-section {
    background-color: #f8f9fa;
    padding: 80px 60px;
}

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

.form-intro {
    flex: 1;
}

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

.form-intro p {
    font-size: 17px;
    color: #495057;
}

.form-wrapper {
    flex: 1;
}

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

input, select, textarea {
    padding: 14px 16px;
    border: 1px solid #ced4da;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: #2c3e50;
}

textarea {
    resize: vertical;
}

.trust-section {
    padding: 80px 60px;
    background-color: #ffffff;
}

.trust-content h2 {
    text-align: center;
    font-size: 38px;
    margin-bottom: 50px;
    color: #1a252f;
}

.testimonials-grid {
    display: flex;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial {
    flex: 1;
    padding: 30px;
    background-color: #f8f9fa;
    border-left: 4px solid #2c3e50;
}

.testimonial p {
    font-size: 17px;
    margin-bottom: 16px;
    color: #495057;
    font-style: italic;
}

.author {
    font-size: 14px;
    color: #6c757d;
    font-weight: 600;
}

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

.footer-content {
    display: flex;
    gap: 80px;
    margin-bottom: 40px;
}

.footer-col {
    flex: 1;
}

.footer-col h4 {
    font-size: 18px;
    margin-bottom: 16px;
}

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

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

.footer-col a {
    color: #ecf0f1;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: #3498db;
}

.disclaimer {
    font-size: 14px;
    color: #bdc3c7;
    line-height: 1.5;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #34495e;
}

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

.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    border-top: 2px solid #2c3e50;
    padding: 24px 60px;
    z-index: 1000;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

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

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

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

.cookie-content a {
    color: #2c3e50;
    font-weight: 600;
}

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

.cookie-accept, .cookie-reject {
    padding: 10px 24px;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

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

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

.cookie-reject {
    background-color: #e9ecef;
    color: #495057;
}

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

.thanks-page {
    min-height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
    text-align: center;
}

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

.thanks-page p {
    font-size: 18px;
    color: #495057;
    margin-bottom: 30px;
    max-width: 600px;
}

.about-hero {
    padding: 100px 60px 60px 60px;
    background-color: #f8f9fa;
    text-align: center;
}

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

.about-content-split {
    display: flex;
    gap: 60px;
    padding: 80px 60px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 32px;
    margin-bottom: 20px;
    color: #1a252f;
}

.about-text p {
    font-size: 17px;
    color: #495057;
    margin-bottom: 16px;
}

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

.about-image img {
    width: 100%;
    height: 100%;
}

.services-page {
    padding: 100px 60px 60px 60px;
}

.services-page h1 {
    font-size: 48px;
    margin-bottom: 40px;
    text-align: center;
    color: #1a252f;
}

.contact-page {
    padding: 100px 60px 60px 60px;
}

.contact-split {
    display: flex;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
}

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

.info-block {
    margin-bottom: 30px;
}

.info-block h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #2c3e50;
}

.info-block p {
    font-size: 16px;
    color: #495057;
    line-height: 1.6;
}

.contact-image {
    flex: 1;
    background-color: #d6d8db;
}

.contact-image img {
    width: 100%;
    height: 100%;
}

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

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

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

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

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

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

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

@media (max-width: 968px) {
    .nav-split {
        padding: 20px 30px;
    }

    .hero-split, .value-section, .about-content-split, .contact-split {
        flex-direction: column;
    }

    .hero-content, .value-right {
        padding: 60px 30px;
    }

    .services-preview, .form-section, .trust-section {
        padding: 60px 30px;
    }

    .form-container-split {
        flex-direction: column;
        gap: 40px;
    }

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

    .footer {
        padding: 40px 30px 20px 30px;
    }

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

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

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

@media (max-width: 600px) {
    .nav-right {
        gap: 16px;
    }

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

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

    .hero-subtitle {
        font-size: 16px;
    }

    .section-header-center h2 {
        font-size: 32px;
    }
}