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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #0ea5e9;
    --accent: #f59e0b;
    --text: #1e293b;
    --text-light: #64748b;
    --bg: #ffffff;
    --bg-alt: #f8fafc;
    --border: #e2e8f0;
    --success: #10b981;
    --shadow: rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
}

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

header {
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 8px var(--shadow);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
    flex-wrap: wrap;
    gap: 16px;
}

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

.ad-notice {
    font-size: 11px;
    color: var(--text-light);
    padding: 4px 12px;
    background: var(--bg-alt);
    border-radius: 4px;
    border: 1px solid var(--border);
}

nav ul {
    list-style: none;
    display: flex;
    gap: 32px;
    align-items: center;
    flex-wrap: wrap;
}

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

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

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

.hero {
    background: linear-gradient(135deg, #1e40af 0%, #2563eb 100%);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 720px;
}

.hero h1 {
    font-size: 48px;
    line-height: 1.2;
    margin-bottom: 24px;
    font-weight: 800;
}

.hero p {
    font-size: 20px;
    margin-bottom: 32px;
    opacity: 0.95;
}

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

.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}

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

.btn-secondary:hover {
    background: var(--bg-alt);
}

section {
    padding: 80px 0;
}

.section-alt {
    background: var(--bg-alt);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 56px;
}

.section-header h2 {
    font-size: 40px;
    margin-bottom: 16px;
    font-weight: 700;
    color: var(--text);
}

.section-header p {
    font-size: 18px;
    color: var(--text-light);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.card {
    background: var(--bg);
    border-radius: 12px;
    padding: 32px;
    flex: 1 1 300px;
    max-width: 400px;
    box-shadow: 0 4px 12px var(--shadow);
    transition: all 0.3s;
    border: 1px solid var(--border);
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px var(--shadow);
}

.card-image {
    width: 100%;
    height: 220px;
    border-radius: 8px;
    margin-bottom: 20px;
    background: var(--bg-alt);
    object-fit: cover;
}

.card h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--text);
}

.card p {
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.card-price {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin: 16px 0;
}

.card .btn {
    width: 100%;
    text-align: center;
}

.stats {
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
    justify-content: center;
    padding: 64px 0;
}

.stat-item {
    text-align: center;
    flex: 1 1 200px;
}

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

.stat-label {
    font-size: 16px;
    color: var(--text-light);
}

.form-container {
    max-width: 640px;
    margin: 0 auto;
    background: var(--bg);
    padding: 48px;
    border-radius: 12px;
    box-shadow: 0 8px 24px var(--shadow);
    border: 1px solid var(--border);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 16px;
    font-family: inherit;
    transition: border-color 0.2s;
}

.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;
}

.contact-info {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 56px;
}

.contact-card {
    flex: 1 1 280px;
    background: var(--bg);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px var(--shadow);
}

.contact-card h3 {
    font-size: 20px;
    margin-bottom: 16px;
    color: var(--primary);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.8;
}

footer {
    background: #1e293b;
    color: white;
    padding: 56px 0 24px;
}

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

.footer-section {
    flex: 1 1 240px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
}

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

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

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-section a:hover {
    color: white;
}

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    padding: 24px;
    box-shadow: 0 -4px 16px var(--shadow);
    z-index: 1000;
    border-top: 2px solid var(--border);
}

.cookie-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1 1 400px;
    color: var(--text);
}

.cookie-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-banner.hidden {
    display: none;
}

.thanks-container {
    text-align: center;
    max-width: 640px;
    margin: 120px auto;
    padding: 64px 32px;
    background: var(--bg-alt);
    border-radius: 12px;
}

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

.thanks-container h1 {
    font-size: 36px;
    margin-bottom: 16px;
    color: var(--text);
}

.thanks-container p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
}

.legal-content {
    max-width: 880px;
    margin: 0 auto;
    padding: 40px 24px;
}

.legal-content h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--text);
}

.legal-content h2 {
    font-size: 28px;
    margin: 40px 0 16px;
    color: var(--text);
}

.legal-content h3 {
    font-size: 22px;
    margin: 32px 0 12px;
    color: var(--text);
}

.legal-content p {
    margin-bottom: 16px;
    line-height: 1.8;
    color: var(--text-light);
}

.legal-content ul,
.legal-content ol {
    margin: 16px 0 16px 32px;
    line-height: 1.8;
    color: var(--text-light);
}

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

.disclaimer {
    background: #fef3c7;
    border-left: 4px solid var(--accent);
    padding: 24px;
    margin: 40px 0;
    border-radius: 4px;
}

.disclaimer h3 {
    color: #92400e;
    margin-bottom: 12px;
}

.disclaimer p {
    color: #78350f;
    line-height: 1.7;
}

.service-selection {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 32px;
}

.service-option {
    flex: 1 1 calc(50% - 8px);
    border: 2px solid var(--border);
    border-radius: 8px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
    background: var(--bg);
}

.service-option:hover {
    border-color: var(--primary);
    background: var(--bg-alt);
}

.service-option.selected {
    border-color: var(--primary);
    background: #eff6ff;
}

.service-option h4 {
    font-size: 18px;
    margin-bottom: 8px;
    color: var(--text);
}

.service-option p {
    font-size: 14px;
    color: var(--text-light);
}

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

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

    nav {
        display: none;
        width: 100%;
    }

    nav.active {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 16px;
        padding: 16px 0;
    }

    .hero h1 {
        font-size: 32px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 28px;
    }

    .card {
        max-width: 100%;
    }

    .form-container {
        padding: 32px 24px;
    }

    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }

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