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

:root {
    --primary-color: #2D5F7E;
    --secondary-color: #4A90A4;
    --accent-color: #E8A87C;
    --text-dark: #1a1a1a;
    --text-light: #f4f4f4;
    --bg-light: #ffffff;
    --bg-gray: #f8f9fa;
    --shadow: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-hover: 0 8px 24px rgba(0,0,0,0.12);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--bg-light);
}

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

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

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

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

.ad-notice {
    font-size: 12px;
    color: #666;
    padding: 6px 12px;
    background: #fffae6;
    border-radius: 4px;
    margin: 0 20px;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: 0.3s;
}

.hero-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--text-light);
    padding: 80px 0;
    text-align: center;
}

.hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

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

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

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cards-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    padding: 60px 0;
}

.card {
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: all 0.3s;
    flex: 1 1 calc(33.333% - 20px);
    min-width: 300px;
}

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

.card-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: var(--bg-gray);
}

.card-content {
    padding: 24px;
}

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

.card-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 16px;
}

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

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

.section-light {
    background: var(--bg-gray);
    padding: 60px 0;
}

.section-dark {
    background: var(--primary-color);
    color: var(--text-light);
    padding: 60px 0;
}

.form-section {
    max-width: 600px;
    margin: 0 auto;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 12px;
    box-shadow: var(--shadow);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    font-size: 15px;
    transition: border-color 0.3s;
}

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

.service-selector {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.service-option {
    display: flex;
    align-items: center;
    padding: 16px;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

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

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

.service-option input[type="radio"] {
    width: auto;
    margin-right: 12px;
}

.service-option-content {
    flex: 1;
}

.service-option-content h4 {
    font-size: 18px;
    margin-bottom: 4px;
}

.service-option-content .price {
    font-size: 20px;
    margin: 0;
}

footer {
    background: var(--text-dark);
    color: var(--text-light);
    padding: 50px 0 20px;
}

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

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

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

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

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

.footer-column a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #444;
    font-size: 14px;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(26, 26, 26, 0.98);
    color: var(--text-light);
    padding: 20px;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.3);
    z-index: 1000;
    display: none;
}

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

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

.cookie-content p {
    flex: 1;
    min-width: 300px;
}

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

.cookie-buttons button {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

.cookie-reject {
    background: transparent;
    color: var(--text-light);
    border: 2px solid var(--text-light);
}

.about-content {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-image {
    flex: 1;
    min-width: 300px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: var(--shadow);
}

.contact-info {
    max-width: 600px;
    margin: 0 auto;
}

.info-card {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    margin-bottom: 20px;
}

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

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

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

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

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

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

.legal-content ul {
    margin: 16px 0 16px 30px;
    line-height: 1.8;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px 20px;
}

.thanks-card {
    background: var(--bg-light);
    padding: 60px;
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
    text-align: center;
    max-width: 600px;
}

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

.thanks-card p {
    font-size: 18px;
    margin-bottom: 16px;
    line-height: 1.6;
}

.checkmark {
    font-size: 72px;
    color: #4CAF50;
    margin-bottom: 20px;
}

.disclaimer {
    background: #fff8e1;
    border-left: 4px solid var(--accent-color);
    padding: 20px;
    margin: 30px 0;
    border-radius: 4px;
}

.disclaimer p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
}

@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-light);
        box-shadow: var(--shadow);
    }

    nav.active {
        display: block;
    }

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

    nav ul li {
        padding: 12px 0;
        border-bottom: 1px solid #e0e0e0;
    }

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

    .card {
        flex: 1 1 100%;
    }

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

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

    .ad-notice {
        display: none;
    }
}