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

:root {
    --primary: #1a3d5c;
    --secondary: #2d6a8f;
    --accent: #4a9aba;
    --light: #f4f7f9;
    --dark: #0f1e2e;
    --text: #333;
    --gray: #6c757d;
    --border: #e0e5ea;
    --success: #28a745;
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: #fff;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.nav-wrapper {
    background: var(--dark);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 0;
}

.logo {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-links {
    display: flex;
    gap: 35px;
    list-style: none;
}

.nav-links a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--accent);
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
}

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

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

.split-content {
    background: #fff;
}

.split-visual {
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

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

.hero-split {
    min-height: 650px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

.hero-split .split-content {
    background: transparent;
    color: #fff;
}

.hero-split h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-split p {
    font-size: 19px;
    margin-bottom: 35px;
    opacity: 0.95;
    line-height: 1.7;
}

.cta-primary {
    display: inline-block;
    background: var(--accent);
    color: #fff;
    padding: 16px 42px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: #3a8aaa;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(74,154,186,0.4);
}

.cta-secondary {
    display: inline-block;
    background: transparent;
    color: var(--primary);
    padding: 16px 42px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 16px;
    border: 2px solid var(--primary);
    transition: all 0.3s;
}

.cta-secondary:hover {
    background: var(--primary);
    color: #fff;
}

h2 {
    font-size: 38px;
    margin-bottom: 20px;
    color: var(--dark);
    font-weight: 700;
    line-height: 1.3;
}

h3 {
    font-size: 26px;
    margin-bottom: 16px;
    color: var(--primary);
    font-weight: 600;
}

.section-intro {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    line-height: 1.8;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.service-card {
    flex: 1;
    min-width: 280px;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 35px;
    transition: all 0.3s;
}

.service-card:hover {
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}

.service-card h3 {
    font-size: 22px;
    margin-bottom: 14px;
}

.service-card p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.price {
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    margin: 20px 0;
}

.form-section {
    background: var(--light);
    padding: 80px 60px;
}

.form-container {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.stats-section {
    display: flex;
    justify-content: space-around;
    background: var(--primary);
    color: #fff;
    padding: 60px 40px;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 16px;
    opacity: 0.9;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 25px;
    align-items: flex-start;
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.feature-text h3 {
    margin-bottom: 10px;
}

.feature-text p {
    color: var(--gray);
    line-height: 1.7;
}

.testimonial-section {
    background: var(--light);
    padding: 80px 60px;
}

.testimonials {
    display: flex;
    gap: 30px;
    margin-top: 40px;
}

.testimonial-card {
    flex: 1;
    background: #fff;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text);
}

.testimonial-author {
    font-weight: 600;
    color: var(--primary);
}

.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 40px;
}

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

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

.footer-section ul li {
    margin-bottom: 12px;
}

.footer-section a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--accent);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h4 {
    margin-bottom: 6px;
    color: var(--primary);
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: #fff;
    padding: 25px;
    display: none;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

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

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

.cookie-text {
    flex: 1;
    font-size: 15px;
}

.cookie-text a {
    color: var(--accent);
    text-decoration: underline;
}

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

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

.cookie-accept {
    background: var(--success);
    color: #fff;
}

.cookie-accept:hover {
    background: #218838;
}

.cookie-reject {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}

.cookie-reject:hover {
    border-color: #fff;
}

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--accent);
    color: #fff;
    padding: 18px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 6px 25px rgba(74,154,186,0.5);
    z-index: 999;
    transition: all 0.3s;
    display: none;
}

.sticky-cta.show {
    display: block;
}

.sticky-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(74,154,186,0.6);
}

.thanks-container {
    min-height: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 50px;
    margin-bottom: 30px;
}

.thanks-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark);
}

.thanks-container p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
    max-width: 600px;
}

.policy-container {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
}

.policy-container h1 {
    font-size: 42px;
    margin-bottom: 20px;
    color: var(--dark);
}

.policy-container h2 {
    font-size: 28px;
    margin: 40px 0 20px;
    color: var(--primary);
}

.policy-container p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: var(--text);
}

.policy-container ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.policy-container ul li {
    margin-bottom: 12px;
    line-height: 1.7;
}

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

    .split-content,
    .split-visual {
        padding: 50px 30px;
    }

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

    .hero-split h1 {
        font-size: 38px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--dark);
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

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

    .testimonials {
        flex-direction: column;
    }

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

    .stats-section {
        flex-direction: column;
        gap: 30px;
    }

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

    .sticky-cta {
        bottom: 20px;
        right: 20px;
        font-size: 14px;
        padding: 14px 25px;
    }
}

@media (max-width: 640px) {
    h2 {
        font-size: 28px;
    }

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

    .service-card {
        min-width: 100%;
    }
}
