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

:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #f59e0b;
    --text: #1f2937;
    --text-light: #6b7280;
    --bg: #ffffff;
    --bg-light: #f9fafb;
    --border: #e5e7eb;
    --success: #10b981;
    --shadow: rgba(0, 0, 0, 0.1);
}

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

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

.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 20px;
    max-width: 1280px;
    margin: 0 auto;
}

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

.nav-wrapper {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav {
    display: flex;
    gap: 24px;
    list-style: none;
}

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

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

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

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

.hero-card {
    background: var(--bg);
    border-radius: 16px;
    overflow: hidden;
    margin: 32px auto;
    box-shadow: 0 4px 24px var(--shadow);
    max-width: 1240px;
}

.hero-content {
    display: flex;
    flex-direction: column;
}

.hero-image {
    width: 100%;
    height: 420px;
    object-fit: cover;
    background-color: #e0e7ff;
}

.hero-text {
    padding: 48px;
}

.hero-text h1 {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text);
}

.hero-text p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 32px;
    max-width: 640px;
}

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

.btn:hover {
    background: var(--primary-dark);
}

.btn-secondary {
    background: var(--bg-light);
    color: var(--text);
    border: 1px solid var(--border);
}

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

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin: 48px auto;
    max-width: 1240px;
}

.card {
    background: var(--bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 12px var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
    flex: 1 1 calc(33.333% - 16px);
    min-width: 280px;
    display: flex;
    flex-direction: column;
}

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

.card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background-color: #dbeafe;
}

.card-content {
    padding: 24px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

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

.card-content p {
    color: var(--text-light);
    margin-bottom: 16px;
    flex-grow: 1;
}

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

.section {
    margin: 64px auto;
    max-width: 1240px;
}

.section-title {
    font-size: 36px;
    text-align: center;
    margin-bottom: 48px;
    color: var(--text);
}

.info-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.info-card {
    background: var(--bg);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow);
    flex: 1 1 calc(50% - 10px);
    min-width: 280px;
}

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

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

.form-card {
    background: var(--bg);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 4px 24px var(--shadow);
    max-width: 640px;
    margin: 48px auto;
}

.form-card h2 {
    font-size: 32px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--text);
}

.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: 1px 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;
}

.service-cards {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 24px;
}

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

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

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

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

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

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

.footer {
    background: var(--text);
    color: white;
    padding: 48px 20px 24px;
    margin-top: 96px;
}

.footer-content {
    max-width: 1240px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 48px;
}

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

.footer-section h4 {
    font-size: 18px;
    margin-bottom: 16px;
    color: white;
}

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

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

.footer-section a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.2s;
}

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

.footer-bottom {
    max-width: 1240px;
    margin: 32px auto 0;
    padding-top: 24px;
    border-top: 1px solid #4b5563;
    text-align: center;
    color: #9ca3af;
    font-size: 14px;
}

.disclaimer {
    background: #fef3c7;
    border: 1px solid #fbbf24;
    border-radius: 8px;
    padding: 20px;
    margin: 32px auto;
    max-width: 1240px;
    font-size: 14px;
    color: #92400e;
    line-height: 1.6;
}

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

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

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

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

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

.thanks-card {
    background: var(--bg);
    padding: 64px 48px;
    border-radius: 16px;
    box-shadow: 0 4px 24px var(--shadow);
    max-width: 640px;
    margin: 96px auto;
    text-align: center;
}

.thanks-card h1 {
    font-size: 36px;
    margin-bottom: 24px;
    color: var(--success);
}

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

.contact-card {
    background: var(--bg);
    padding: 32px;
    border-radius: 12px;
    box-shadow: 0 2px 12px var(--shadow);
    margin-bottom: 24px;
}

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

.contact-card p {
    color: var(--text-light);
    margin-bottom: 8px;
}

.content-page {
    background: var(--bg);
    padding: 48px;
    border-radius: 16px;
    box-shadow: 0 2px 12px var(--shadow);
    margin: 32px auto;
    max-width: 960px;
}

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

.content-page h2 {
    font-size: 28px;
    margin-top: 32px;
    margin-bottom: 16px;
    color: var(--text);
}

.content-page h3 {
    font-size: 22px;
    margin-top: 24px;
    margin-bottom: 12px;
    color: var(--text);
}

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

.content-page ul,
.content-page ol {
    margin: 16px 0 16px 24px;
    color: var(--text-light);
}

.content-page li {
    margin-bottom: 8px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .nav.mobile-open {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg);
        border-bottom: 1px solid var(--border);
        padding: 16px 20px;
        box-shadow: 0 4px 12px var(--shadow);
    }

    .mobile-menu-btn {
        display: block;
    }

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

    .hero-text {
        padding: 32px 24px;
    }

    .card {
        flex: 1 1 100%;
    }

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

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

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

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