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

:root {
    --primary: #2D5F8D;
    --secondary: #E8A547;
    --dark: #1A1A2E;
    --light: #F4F6F9;
    --accent: #4ECDC4;
    --text: #333333;
    --border: #E0E0E0;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    line-height: 1.6;
    color: var(--text);
    overflow-x: hidden;
}

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

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.header-content {
    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 ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

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

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

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: var(--primary);
}

.split-hero {
    display: flex;
    min-height: 100vh;
    padding-top: 80px;
}

.split-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--primary) 0%, #1e4366 100%);
    color: white;
}

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

.split-right::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.15);
}

h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

h2 {
    font-size: 42px;
    line-height: 1.3;
    margin-bottom: 20px;
    font-weight: 700;
}

h3 {
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 600;
}

.hero-text {
    font-size: 20px;
    margin-bottom: 35px;
    line-height: 1.7;
    opacity: 0.95;
}

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

.cta-primary:hover {
    background: #d69439;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 165, 71, 0.4);
}

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

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

.split-section {
    display: flex;
    align-items: stretch;
}

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

.split-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 500px;
}

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

.bg-light {
    background: var(--light);
}

.bg-dark {
    background: var(--dark);
    color: white;
}

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

.service-card {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 280px;
    background: white;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
    border: 2px solid transparent;
}

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

.service-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

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

.service-description {
    margin-bottom: 25px;
    color: #666;
    line-height: 1.7;
}

.form-section {
    padding: 100px 60px;
    background: linear-gradient(135deg, var(--accent) 0%, #3ba89f 100%);
}

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

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

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

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s;
    font-family: inherit;
}

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

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

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

.floating-cta {
    padding: 18px 35px;
    background: var(--secondary);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 8px 25px rgba(232, 165, 71, 0.4);
    transition: all 0.3s;
    display: inline-block;
}

.floating-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 12px 35px rgba(232, 165, 71, 0.5);
}

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

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

.testimonial {
    flex: 1 1 calc(50% - 15px);
    min-width: 300px;
    background: white;
    padding: 35px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

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

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

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

.footer-col {
    flex: 1;
    min-width: 200px;
}

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

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

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

.footer-col a:hover {
    color: 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: rgba(26, 26, 46, 0.98);
    color: white;
    padding: 25px;
    z-index: 10000;
    display: none;
    backdrop-filter: blur(10px);
}

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

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

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

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

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

.btn-accept:hover {
    background: #3ba89f;
}

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

.btn-reject:hover {
    background: white;
    color: var(--dark);
}

.stats-section {
    padding: 100px 60px;
    text-align: center;
}

.stats-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
    justify-content: center;
}

.stat-item {
    flex: 1;
    min-width: 200px;
}

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

.stat-label {
    font-size: 18px;
    color: #666;
}

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

.contact-info {
    flex: 1;
    background: var(--primary);
    color: white;
    padding: 80px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form-section {
    flex: 1;
    padding: 80px 60px;
    background: var(--light);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-item {
    margin-bottom: 30px;
}

.info-item h4 {
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--secondary);
}

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

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

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

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

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

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

.thanks-container {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    background: linear-gradient(135deg, var(--light) 0%, white 100%);
}

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

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

.thanks-content h1 {
    color: var(--primary);
    margin-bottom: 25px;
}

.thanks-content p {
    font-size: 18px;
    margin-bottom: 35px;
    color: #666;
}

@media (max-width: 968px) {
    .mobile-toggle {
        display: block;
    }

    nav ul {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }

    nav ul.active {
        display: flex;
    }

    .split-hero,
    .split-section,
    .contact-split {
        flex-direction: column;
    }

    .split-left,
    .split-content,
    .contact-info,
    .contact-form-section {
        padding: 60px 30px;
    }

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

    h1 {
        font-size: 38px;
    }

    h2 {
        font-size: 32px;
    }

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

    .testimonial {
        flex: 1 1 100%;
    }

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

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

    .floating-cta {
        padding: 14px 25px;
        font-size: 14px;
    }
}

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

    h2 {
        font-size: 26px;
    }

    .split-left,
    .split-content,
    .form-section,
    .testimonial-section,
    .stats-section {
        padding: 50px 20px;
    }

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