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

:root {
    --primary: #1a4d7a;
    --secondary: #2d6fa3;
    --accent: #e8a647;
    --dark: #1a1a1a;
    --light: #f8f9fa;
    --gray: #6c757d;
    --white: #ffffff;
    --border: #dde2e6;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--dark);
    line-height: 1.7;
    background: var(--white);
}

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

header {
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 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 {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark);
    transition: 0.3s;
}

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

.split-left,
.split-right {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 60px;
}

.split-left {
    background: var(--light);
}

.split-right {
    background: var(--white);
}

.split-content {
    max-width: 550px;
}

.split-content h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 30px;
    color: var(--primary);
}

.split-content h2 {
    font-size: 38px;
    line-height: 1.3;
    margin-bottom: 25px;
    color: var(--primary);
}

.split-content h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.split-content p {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gray);
}

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

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

.cta-button:hover {
    background: #d49536;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(232, 166, 71, 0.3);
}

.cta-secondary {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
    padding: 14px 38px;
}

.cta-secondary:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(26, 77, 122, 0.2);
}

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

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

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

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary);
}

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

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

.price-label {
    font-size: 14px;
    color: var(--gray);
    font-weight: 400;
}

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

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

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

.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 18px;
    border: 1px solid var(--border);
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: border 0.3s;
}

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

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

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

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

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

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

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

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

.footer-col a:hover {
    color: var(--white);
}

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

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

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

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

.cookie-text {
    flex: 1;
}

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

.cookie-buttons button {
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

.accept-cookies {
    background: var(--accent);
    color: var(--white);
}

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

.accept-cookies:hover {
    background: #d49536;
}

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

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

.about-section {
    padding: 80px 0;
}

.about-grid {
    display: flex;
    gap: 60px;
    align-items: center;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    border-radius: 8px;
}

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

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

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

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

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

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

.contact-item {
    margin-bottom: 25px;
}

.contact-item h3 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--primary);
}

.contact-item p {
    color: var(--gray);
    line-height: 1.6;
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 30px;
    color: var(--primary);
}

.legal-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: var(--secondary);
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--gray);
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 30px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--gray);
}

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

.thanks-content h1 {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.thanks-content p {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 30px;
}

.checkmark {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.checkmark::after {
    content: "✓";
    color: white;
    font-size: 48px;
    font-weight: bold;
}

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

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

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

    .split-content h2 {
        font-size: 32px;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
        transition: left 0.3s;
    }

    .nav-links.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

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

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

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

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

@media (max-width: 640px) {
    .services-grid {
        flex-direction: column;
    }

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

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

    .split-content h2 {
        font-size: 26px;
    }

    .form-container {
        padding: 30px 20px;
    }

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