* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 60px;
    background: #ffffff;
    border-bottom: 1px solid #e9ecef;
}

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

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

.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;
    align-items: center;
}

.hero-left {
    flex: 1;
    padding: 80px 60px;
    background: #f8f9fa;
}

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

.hero-left p {
    font-size: 19px;
    margin-bottom: 35px;
    color: #5a6c7d;
    max-width: 520px;
}

.cta-primary {
    display: inline-block;
    padding: 16px 42px;
    background: #3498db;
    color: #ffffff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 6px;
    transition: background 0.3s;
}

.cta-primary:hover {
    background: #2980b9;
}

.hero-right {
    flex: 1;
    background: #34495e;
}

.hero-right img {
    width: 100%;
    height: 600px;
    object-fit: cover;
    display: block;
}

.intro-split {
    display: flex;
    min-height: 500px;
}

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

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

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

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

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

.intro-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: #5a6c7d;
}

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

.services-preview h2 {
    font-size: 42px;
    text-align: center;
    margin-bottom: 70px;
    color: #1a252f;
}

.services-grid-split {
    max-width: 1400px;
    margin: 0 auto;
}

.service-card-split {
    display: flex;
    margin-bottom: 60px;
    background: #ffffff;
    border: 1px solid #e9ecef;
    overflow: hidden;
}

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

.service-card-split img {
    width: 50%;
    object-fit: cover;
    background: #ecf0f1;
}

.service-content {
    width: 50%;
    padding: 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-content h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: #1a252f;
}

.service-content p {
    font-size: 17px;
    margin-bottom: 25px;
    color: #5a6c7d;
    line-height: 1.7;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 25px;
    display: block;
}

.select-service {
    padding: 14px 32px;
    background: #3498db;
    color: #ffffff;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
    transition: background 0.3s;
    align-self: flex-start;
}

.select-service:hover {
    background: #2980b9;
}

.form-split {
    display: flex;
    min-height: 700px;
    background: #ecf0f1;
}

.form-description {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: #34495e;
    color: #ffffff;
}

.form-description h2 {
    font-size: 38px;
    margin-bottom: 25px;
}

.form-description p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #ecf0f1;
}

.benefits-list {
    list-style: none;
}

.benefits-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 18px;
}

.benefits-list li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
    font-size: 20px;
}

.form-container {
    flex: 1;
    padding: 80px 60px;
    background: #ffffff;
    display: flex;
    align-items: center;
}

#contactForm {
    width: 100%;
    max-width: 500px;
}

#contactForm label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #2c3e50;
    font-size: 15px;
}

#contactForm input,
#contactForm select,
#contactForm textarea {
    width: 100%;
    padding: 14px;
    margin-bottom: 24px;
    border: 1px solid #cbd5e0;
    border-radius: 6px;
    font-size: 16px;
    font-family: inherit;
}

#contactForm input:focus,
#contactForm select:focus,
#contactForm textarea:focus {
    outline: none;
    border-color: #3498db;
}

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

.submit-btn:hover {
    background: #229954;
}

.trust-section {
    padding: 100px 60px;
    background: #f8f9fa;
}

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

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

.trust-item {
    flex: 1;
}

.trust-item h3 {
    font-size: 26px;
    margin-bottom: 18px;
    color: #1a252f;
}

.trust-item p {
    font-size: 17px;
    color: #5a6c7d;
    line-height: 1.7;
}

.footer-split {
    display: flex;
    padding: 80px 60px 40px;
    background: #2c3e50;
    color: #ecf0f1;
    gap: 80px;
}

.footer-column {
    flex: 1;
}

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

.footer-column p {
    margin-bottom: 12px;
    color: #bdc3c7;
    font-size: 15px;
}

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

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

.disclaimer {
    padding: 40px 60px;
    background: #34495e;
    color: #bdc3c7;
    font-size: 13px;
    line-height: 1.6;
    text-align: center;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #2c3e50;
    color: #ffffff;
    padding: 25px 40px;
    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 {
    flex: 1;
    font-size: 15px;
    line-height: 1.5;
}

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    font-weight: 600;
    border-radius: 6px;
    cursor: pointer;
    font-size: 15px;
    transition: opacity 0.3s;
}

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

.cookie-btn.accept {
    background: #27ae60;
    color: #ffffff;
}

.cookie-btn.reject {
    background: #95a5a6;
    color: #ffffff;
}

@media (max-width: 768px) {
    .split-nav {
        flex-direction: column;
        padding: 20px;
        gap: 20px;
    }

    .nav-right {
        gap: 20px;
    }

    .hero-split,
    .intro-split,
    .service-card-split,
    .form-split,
    .trust-split,
    .footer-split {
        flex-direction: column;
    }

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

    .hero-left,
    .intro-content,
    .form-description,
    .form-container,
    .service-content {
        padding: 40px 30px;
    }

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

    .hero-left h1,
    .services-preview h2,
    .trust-section h2 {
        font-size: 32px;
    }

    .service-card-split img,
    .service-content {
        width: 100%;
    }

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