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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: #ffffff;
}

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

.nav-split {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 5%;
    background: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

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

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

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

.hero-content {
    flex: 1;
    padding: 60px 5% 60px 8%;
    background: #ecf0f1;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: #2c3e50;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #34495e;
    max-width: 500px;
}

.hero-image {
    flex: 1;
    background: #95a5a6;
    overflow: hidden;
}

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

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

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

.intro-asymmetric {
    display: flex;
    padding: 100px 5%;
    gap: 60px;
    align-items: flex-start;
}

.intro-text-wide {
    flex: 1.5;
    padding-top: 40px;
}

.intro-text-wide h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: #2c3e50;
}

.intro-text-wide p {
    font-size: 18px;
    line-height: 1.8;
    color: #34495e;
}

.intro-card-offset {
    flex: 1;
    background: #f8f9fa;
    padding: 30px;
    border-radius: 8px;
    margin-top: -50px;
}

.intro-card-offset img {
    width: 100%;
    height: auto;
    border-radius: 6px;
    margin-bottom: 20px;
    background: #bdc3c7;
    object-fit: cover;
}

.intro-card-offset p {
    font-size: 16px;
    color: #34495e;
    line-height: 1.7;
}

.services-grid {
    padding: 80px 5%;
    background: #ffffff;
}

.section-header-left {
    max-width: 600px;
    margin-bottom: 60px;
}

.section-header-left h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.section-header-left p {
    font-size: 18px;
    color: #7f8c8d;
}

.service-cards-stacked {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.service-card {
    display: flex;
    gap: 40px;
    background: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-card:nth-child(even) {
    flex-direction: row-reverse;
}

.service-card img {
    width: 45%;
    height: auto;
    object-fit: cover;
    background: #bdc3c7;
}

.service-info {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-info h3 {
    font-size: 26px;
    margin-bottom: 15px;
    color: #2c3e50;
}

.service-info p {
    font-size: 16px;
    line-height: 1.7;
    color: #34495e;
    margin-bottom: 25px;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #27ae60;
}

.select-service {
    padding: 12px 28px;
    background: #3498db;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
    font-size: 15px;
}

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

.form-section-split {
    display: flex;
    background: #ecf0f1;
    padding: 80px 5%;
    gap: 60px;
}

.form-intro {
    flex: 0.8;
}

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

.form-intro p {
    font-size: 18px;
    line-height: 1.7;
    color: #34495e;
}

.form-container {
    flex: 1;
    background: #ffffff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.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;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
}

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

.trust-section {
    padding: 80px 8%;
    background: #2c3e50;
    color: #ffffff;
}

.trust-content {
    max-width: 800px;
    margin-bottom: 50px;
}

.trust-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.trust-content p {
    font-size: 17px;
    line-height: 1.8;
    color: #ecf0f1;
}

.trust-stats {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #3498db;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 16px;
    color: #bdc3c7;
}

footer {
    background: #34495e;
    color: #ecf0f1;
    padding: 60px 5% 30px;
}

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

.footer-col {
    flex: 1;
}

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

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

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

.footer-col p {
    color: #95a5a6;
    font-size: 14px;
    line-height: 1.6;
}

.footer-bottom {
    border-top: 1px solid #4a5f7f;
    padding-top: 25px;
    text-align: center;
}

.footer-bottom p {
    margin-bottom: 10px;
    font-size: 14px;
    color: #95a5a6;
}

.disclaimer {
    font-size: 13px;
    color: #7f8c8d;
    max-width: 800px;
    margin: 15px auto 0;
    line-height: 1.6;
}

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

.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;
}

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

.btn-accept,
.btn-reject {
    padding: 10px 25px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.3s;
}

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

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

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

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

@media (max-width: 768px) {
    .hero-split {
        flex-direction: column;
    }

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

    .intro-asymmetric {
        flex-direction: column;
    }

    .intro-card-offset {
        margin-top: 0;
    }

    .service-card {
        flex-direction: column !important;
    }

    .service-card img {
        width: 100%;
        height: 250px;
    }

    .form-section-split {
        flex-direction: column;
    }

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

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

    .nav-right {
        flex-wrap: wrap;
        gap: 15px;
    }
}