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

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

.split-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 60px;
    background-color: #1a1a2e;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

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

.nav-right a {
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    transition: color 0.3s;
}

.nav-right a:hover {
    color: #4a9eff;
}

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

.hero-content {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background-color: #16213e;
}

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

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

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

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

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

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

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

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

.split-content {
    flex: 1;
    padding: 70px 60px;
    background-color: #f8f9fa;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.split-content h2 {
    font-size: 38px;
    color: #1a1a2e;
    margin-bottom: 25px;
}

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

.split-image {
    flex: 1;
    background-color: #dee2e6;
}

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

.cta-secondary {
    display: inline-block;
    padding: 14px 35px;
    background-color: transparent;
    color: #1a1a2e;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    border: 2px solid #1a1a2e;
    border-radius: 4px;
    transition: all 0.3s;
    align-self: flex-start;
    margin-top: 15px;
}

.cta-secondary:hover {
    background-color: #1a1a2e;
    color: #ffffff;
}

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

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

.section-header h2 {
    font-size: 42px;
    color: #1a1a2e;
    margin-bottom: 15px;
}

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

.grid-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    flex: 0 0 calc(33.333% - 20px);
    background-color: #f8f9fa;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 100%;
    height: 220px;
    background-color: #dee2e6;
}

.service-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-card h3 {
    font-size: 22px;
    color: #1a1a2e;
    padding: 25px 25px 15px;
}

.service-card p {
    font-size: 15px;
    color: #495057;
    padding: 0 25px 20px;
    line-height: 1.6;
}

.price {
    font-size: 28px;
    font-weight: 700;
    color: #4a9eff;
    padding: 0 25px 20px;
}

.select-service {
    width: calc(100% - 50px);
    margin: 0 25px 25px;
    padding: 14px;
    background-color: #1a1a2e;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.select-service:hover {
    background-color: #4a9eff;
}

.contact-form-section {
    padding: 80px 60px;
    background-color: #16213e;
    text-align: center;
}

.contact-form-section h2 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-form-section > p {
    font-size: 18px;
    color: #e0e0e0;
    margin-bottom: 50px;
}

.contact-form {
    max-width: 700px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px;
    border: 1px solid #495057;
    border-radius: 4px;
    font-size: 16px;
    background-color: #ffffff;
    color: #2c3e50;
}

.contact-form select {
    margin-bottom: 20px;
}

.contact-form textarea {
    margin-bottom: 20px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background-color: #4a9eff;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.submit-btn:hover {
    background-color: #2980b9;
}

.disclaimer-section {
    padding: 50px 60px;
    background-color: #f8f9fa;
    border-top: 1px solid #dee2e6;
}

.disclaimer-section p {
    font-size: 14px;
    color: #6c757d;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.7;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    padding: 60px 60px 40px;
    background-color: #1a1a2e;
    color: #ffffff;
}

.footer-left h3 {
    font-size: 24px;
    margin-bottom: 10px;
}

.footer-left p {
    font-size: 15px;
    color: #adb5bd;
}

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

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

.footer-links a:hover {
    color: #4a9eff;
}

.footer-copy {
    font-size: 13px;
    color: #6c757d;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    padding: 25px 60px;
    display: none;
    z-index: 9999;
    border-top: 3px solid #4a9eff;
}

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

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

.cookie-content p {
    color: #ffffff;
    font-size: 15px;
    margin-right: 30px;
}

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cookie-btn.accept {
    background-color: #4a9eff;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #2980b9;
}

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

.cookie-btn.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 968px) {
    .hero-split,
    .split-section,
    .footer-split {
        flex-direction: column;
    }

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

    .service-card {
        flex: 0 0 calc(50% - 15px);
    }

    .form-row {
        flex-direction: column;
    }

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

    .cookie-content p {
        margin-right: 0;
        margin-bottom: 20px;
    }
}

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

    .nav-right {
        gap: 20px;
    }

    .hero-content {
        padding: 50px 20px;
    }

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

    .split-content {
        padding: 50px 20px;
    }

    .services-grid {
        padding: 50px 20px;
    }

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

    .contact-form-section {
        padding: 50px 20px;
    }

    .footer-split {
        padding: 40px 20px;
    }

    .footer-links {
        flex-direction: column;
        gap: 10px;
    }

    .cookie-banner {
        padding: 20px;
    }
}