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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: #2c2c2c;
    line-height: 1.6;
    overflow-x: hidden;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1a1a1a;
    color: #ffffff;
    padding: 20px;
    z-index: 10000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    margin: 0;
}

.cookie-content a {
    color: #87ceeb;
    text-decoration: underline;
}

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

.btn-accept, .btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
}

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

.btn-accept:hover {
    background: #357abd;
}

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

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

.main-nav {
    background: #ffffff;
    border-bottom: 1px solid #e0e0e0;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: #2c2c2c;
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

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

.nav-links a:hover {
    color: #4a90e2;
}

.ad-label {
    font-size: 12px;
    color: #888;
    padding: 4px 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.hero-split {
    display: flex;
    min-height: 600px;
}

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

.hero-content {
    max-width: 540px;
}

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

.hero-content p {
    font-size: 18px;
    margin-bottom: 32px;
    color: #555;
}

.hero-right {
    flex: 1;
    position: relative;
}

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

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

.cta-primary:hover {
    background: #1e4563;
    transform: translateY(-2px);
}

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

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

.intro-left {
    flex: 1;
    position: relative;
}

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

.intro-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background: #ffffff;
}

.intro-content {
    max-width: 520px;
}

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

.intro-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

.services-split {
    display: flex;
    min-height: 700px;
    background: #fafbfc;
}

.services-left {
    flex: 0 0 35%;
    display: flex;
    align-items: flex-start;
    padding: 80px 50px;
    background: #2c5f8d;
    color: #ffffff;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.services-header p {
    font-size: 18px;
    line-height: 1.6;
    opacity: 0.9;
}

.services-right {
    flex: 1;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    background: #ffffff;
    padding: 32px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #1a1a1a;
}

.service-card p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #555;
}

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

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

.btn-select-service:hover {
    background: #357abd;
    transform: translateX(4px);
}

.form-split {
    display: flex;
    min-height: 600px;
}

.form-left {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background: #f0f4f8;
}

.form-intro {
    max-width: 480px;
}

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

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

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

.contact-form {
    width: 100%;
    max-width: 500px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #2c2c2c;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #4a90e2;
}

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

.btn-submit:hover {
    background: #1e4563;
}

.form-note {
    margin-top: 16px;
    font-size: 14px;
    color: #666;
}

#serviceDisplay {
    font-weight: 600;
    color: #2c5f8d;
}

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

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

.trust-left {
    flex: 1;
    position: relative;
}

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

.trust-right {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 60px;
    background: #ffffff;
}

.trust-content {
    max-width: 520px;
}

.trust-content h2 {
    font-size: 34px;
    line-height: 1.3;
    margin-bottom: 24px;
    color: #1a1a1a;
}

.trust-content p {
    font-size: 17px;
    margin-bottom: 20px;
    color: #444;
}

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

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

.footer-left {
    flex: 0 0 300px;
}

.footer-brand {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 12px;
}

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

.footer-right {
    flex: 1;
}

.footer-links {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.footer-disclaimer {
    padding: 20px;
    background: rgba(255,255,255,0.05);
    border-radius: 4px;
    margin-bottom: 24px;
}

.footer-disclaimer p {
    font-size: 13px;
    line-height: 1.6;
    color: #ccc;
}

.footer-contact p {
    font-size: 14px;
    color: #ccc;
}

@media (max-width: 968px) {
    .hero-split,
    .intro-split,
    .services-split,
    .form-split,
    .trust-split {
        flex-direction: column;
    }

    .intro-split.reverse,
    .trust-split.reverse {
        flex-direction: column;
    }

    .hero-left,
    .intro-right,
    .form-left,
    .trust-right {
        padding: 40px 30px;
    }

    .services-left,
    .services-right,
    .form-right {
        padding: 40px 30px;
    }

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

    .nav-links {
        gap: 16px;
        font-size: 14px;
    }

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