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

:root {
    --primary: #1a4d6f;
    --secondary: #2d7ba8;
    --accent: #e8a445;
    --dark: #0f2935;
    --light: #f4f7f9;
    --white: #ffffff;
    --text: #2c3e50;
    --text-light: #637589;
    --border: #d4dce4;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--text);
    line-height: 1.7;
    background: var(--white);
}

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

nav {
    background: var(--white);
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

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

.nav-links a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

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

.split-hero {
    display: flex;
    min-height: 85vh;
    align-items: center;
}

.split-left, .split-right {
    flex: 1;
    padding: 60px;
}

.split-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: var(--light);
}

.split-right {
    background-size: cover;
    background-position: center;
    position: relative;
}

.split-right::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(26,77,111,0.8), rgba(45,123,168,0.6));
}

h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 24px;
    color: var(--dark);
    font-weight: 800;
}

.subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 35px;
    line-height: 1.6;
}

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

.cta-btn:hover {
    background: #d49335;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232,164,69,0.3);
}

.cta-secondary {
    background: var(--secondary);
    color: var(--white);
}

.cta-secondary:hover {
    background: var(--primary);
    box-shadow: 0 8px 20px rgba(45,123,168,0.3);
}

.split-section {
    display: flex;
    min-height: 70vh;
}

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

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

.section-visual {
    flex: 1;
    background-size: cover;
    background-position: center;
    position: relative;
}

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

h2 {
    font-size: 42px;
    margin-bottom: 24px;
    color: var(--primary);
    font-weight: 700;
}

h3 {
    font-size: 28px;
    margin-bottom: 18px;
    color: var(--dark);
    font-weight: 600;
}

.service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 0;
}

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

.service-card:hover {
    border-color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.service-card h3 {
    color: var(--secondary);
    margin-bottom: 15px;
}

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

.price-label {
    font-size: 14px;
    color: var(--text-light);
    margin-left: 8px;
}

.form-wrapper {
    background: var(--light);
    padding: 70px 60px;
}

.form-split {
    display: flex;
    gap: 60px;
    align-items: center;
}

.form-info {
    flex: 1;
}

.form-container {
    flex: 1;
    background: var(--white);
    padding: 45px;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

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

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

input, select, textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: 5px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus {
    outline: none;
    border-color: var(--secondary);
}

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

.sticky-cta {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--dark);
    color: var(--white);
    padding: 25px;
    display: none;
    z-index: 10000;
}

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

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

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

.cookie-btn {
    padding: 12px 28px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.accept-btn {
    background: var(--accent);
    color: var(--dark);
}

.reject-btn {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

footer {
    background: var(--dark);
    color: var(--white);
    padding: 50px 0 30px;
}

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

.footer-section {
    flex: 1;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--accent);
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s;
}

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

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

.stats-section {
    background: var(--primary);
    color: var(--white);
    padding: 80px 60px;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

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

.stat-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 10px;
}

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

.feature-list {
    list-style: none;
    margin: 30px 0;
}

.feature-list li {
    padding: 12px 0 12px 35px;
    position: relative;
    font-size: 17px;
}

.feature-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
    font-size: 20px;
}

.testimonial-card {
    background: var(--white);
    padding: 40px;
    border-left: 4px solid var(--accent);
    margin: 25px 0;
    border-radius: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.testimonial-text {
    font-style: italic;
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.7;
}

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

.thanks-wrapper {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
}

.thanks-content {
    max-width: 700px;
}

.success-icon {
    font-size: 80px;
    color: var(--accent);
    margin-bottom: 30px;
}

.contact-info {
    background: var(--light);
    padding: 40px;
    border-radius: 8px;
    margin: 25px 0;
}

.info-item {
    margin: 20px 0;
    font-size: 17px;
}

.info-item strong {
    color: var(--primary);
    display: block;
    margin-bottom: 8px;
}

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

.legal-content h1 {
    font-size: 38px;
    margin-bottom: 30px;
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
}

.legal-content p {
    margin-bottom: 18px;
    line-height: 1.8;
}

.legal-content ul {
    margin: 20px 0 20px 30px;
}

.legal-content li {
    margin-bottom: 10px;
}

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

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

    .split-left, .split-right, .section-content {
        padding: 40px 30px;
    }

    .split-right {
        min-height: 400px;
    }

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 32px;
    }

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

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

    .sticky-cta {
        bottom: 15px;
        right: 15px;
    }
}

@media (max-width: 640px) {
    h1 {
        font-size: 32px;
    }

    .logo {
        font-size: 20px;
    }

    .nav-links {
        display: none;
    }

    .cookie-content {
        flex-direction: column;
    }

    .stat-number {
        font-size: 42px;
    }
}
