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

:root {
    --primary: #1a3d5c;
    --secondary: #4a7ba7;
    --accent: #e8a834;
    --dark: #0f2537;
    --light: #f4f7fa;
    --text: #2c3e50;
    --text-light: #6c757d;
    --white: #ffffff;
    --border: #dde4eb;
}

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

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

.split-container {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: 100vh;
}

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.logo {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
    letter-spacing: -0.5px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
    flex-wrap: wrap;
}

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

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

.hero-split {
    display: flex;
    flex-direction: column;
    min-height: 85vh;
    background: linear-gradient(135deg, var(--light) 0%, var(--white) 100%);
}

.hero-left {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 40px;
}

.hero-right {
    flex: 1;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 800 600"><rect fill="%234a7ba7" width="800" height="600"/><circle cx="200" cy="150" r="80" fill="%231a3d5c" opacity="0.3"/><circle cx="600" cy="400" r="120" fill="%23e8a834" opacity="0.2"/><rect x="100" y="350" width="200" height="150" fill="%231a3d5c" opacity="0.2"/></svg>') center/cover;
    min-height: 400px;
}

.hero-left h1 {
    font-size: 3.2rem;
    line-height: 1.2;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 800;
}

.hero-left p {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 35px;
    max-width: 550px;
}

.btn {
    display: inline-block;
    padding: 16px 38px;
    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: 1rem;
}

.btn:hover {
    background: #d49a2a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(232, 168, 52, 0.3);
}

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

.btn-secondary:hover {
    background: var(--secondary);
    box-shadow: 0 4px 15px rgba(74, 123, 167, 0.3);
}

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

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

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

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

.split-left.dark {
    background: var(--primary);
    color: var(--white);
}

.split-left.dark h2,
.split-left.dark h3 {
    color: var(--white);
}

.split-right.image-bg {
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 800"><rect fill="%23f4f7fa" width="600" height="800"/><path d="M0,400 Q150,350 300,400 T600,400 L600,800 L0,800 Z" fill="%234a7ba7" opacity="0.1"/></svg>') center/cover;
}

h2 {
    font-size: 2.5rem;
    color: var(--dark);
    margin-bottom: 25px;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 18px;
    font-weight: 600;
}

.services-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.service-card {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.service-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 15px;
    flex-wrap: wrap;
    gap: 15px;
}

.service-price {
    font-size: 1.6rem;
    color: var(--accent);
    font-weight: 700;
}

.service-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 20px;
}

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

.form-wrapper {
    max-width: 650px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 12px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
}

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

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

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    padding: 14px;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 1rem;
    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;
}

.cta-banner {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 70px 40px;
    text-align: center;
    color: var(--white);
}

.cta-banner h2 {
    color: var(--white);
    margin-bottom: 20px;
}

.cta-banner p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

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

.footer-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    margin-bottom: 40px;
}

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

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

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

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

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

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

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

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

.cookie-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.info-card h4 {
    color: var(--primary);
    margin-bottom: 12px;
    font-size: 1.3rem;
}

.testimonial {
    background: var(--white);
    padding: 35px;
    border-radius: 10px;
    margin: 25px 0;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
}

.testimonial-text {
    font-style: italic;
    color: var(--text);
    margin-bottom: 15px;
    font-size: 1.1rem;
    line-height: 1.6;
}

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

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.contact-item strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.page-header {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    padding: 80px 40px 60px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 2.8rem;
    margin-bottom: 15px;
    color: var(--white);
}

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

.content-section h2 {
    margin-top: 40px;
    margin-bottom: 20px;
}

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

.content-section ul {
    margin: 20px 0;
    padding-left: 25px;
}

.content-section li {
    margin-bottom: 12px;
    line-height: 1.7;
}

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

.thanks-icon {
    width: 80px;
    height: 80px;
    background: var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 3rem;
}

@media (min-width: 768px) {
    .hero-split {
        flex-direction: row;
    }

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

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

    .services-grid {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .service-card {
        flex: 1;
        min-width: calc(50% - 15px);
    }

    .footer-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .footer-section {
        flex: 1;
    }

    .cookie-content {
        flex-direction: row;
        justify-content: space-between;
    }

    .info-cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .info-card {
        flex: 1;
        min-width: calc(50% - 12px);
    }

    .contact-info {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .contact-item {
        flex: 1;
        min-width: 250px;
    }
}

@media (max-width: 767px) {
    nav ul {
        gap: 20px;
    }

    .hero-left h1 {
        font-size: 2.2rem;
    }

    h2 {
        font-size: 2rem;
    }

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

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