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

:root {
    --primary: #1a4d7a;
    --secondary: #2c7ab5;
    --accent: #4a9fd8;
    --dark: #0f2841;
    --light: #f4f7fa;
    --text: #2d3748;
    --border: #d4dce6;
    --success: #38a169;
    --warning: #d97706;
}

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

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
    object-fit: cover;
}

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

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

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--accent);
}

.ad-label {
    background: rgba(255,255,255,0.1);
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 12px;
    color: rgba(255,255,255,0.8);
}

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

nav a {
    color: white;
    transition: color 0.3s;
    font-weight: 500;
}

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

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

.split-content,
.split-image {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.split-content {
    padding: 80px 60px;
}

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

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

.hero-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--primary) 100%);
    color: white;
    padding: 120px 60px;
    text-align: left;
}

.hero-content h1 {
    font-size: 56px;
    margin-bottom: 30px;
    line-height: 1.2;
    font-weight: 700;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 680px;
}

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

.cta-button:hover {
    background: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(42,157,216,0.3);
}

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

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

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

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

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

.service-price span {
    font-size: 18px;
    color: var(--text);
    font-weight: normal;
}

.content-wrapper {
    max-width: 650px;
}

.content-wrapper h2 {
    font-size: 42px;
    margin-bottom: 25px;
    color: var(--dark);
    line-height: 1.3;
}

.content-wrapper p {
    font-size: 18px;
    margin-bottom: 20px;
    line-height: 1.8;
}

.features-list {
    list-style: none;
    margin-top: 30px;
}

.features-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 17px;
}

.features-list li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--success);
    font-weight: bold;
    font-size: 20px;
}

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

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

.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;
    border: 2px solid var(--border);
    border-radius: 6px;
    font-size: 16px;
    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 {
    min-height: 140px;
    resize: vertical;
}

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

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 50px;
}

.footer-section {
    flex: 1;
    min-width: 250px;
}

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

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

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

.footer-section a {
    color: rgba(255,255,255,0.8);
    transition: color 0.3s;
}

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

.footer-bottom {
    max-width: 1400px;
    margin: 40px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.6);
}

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

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

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

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

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

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

.cookie-accept:hover {
    background: var(--secondary);
}

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

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

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

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

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

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

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

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

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

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

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

.contact-info p {
    margin-bottom: 12px;
    font-size: 17px;
}

.disclaimer {
    background: #fff9e6;
    border-left: 4px solid var(--warning);
    padding: 25px;
    margin: 40px 0;
}

.disclaimer p {
    margin-bottom: 10px;
    line-height: 1.8;
}

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

    .header-content {
        flex-direction: column;
        gap: 20px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

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

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

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

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