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

:root {
    --primary: #2c3e50;
    --secondary: #e74c3c;
    --accent: #3498db;
    --text: #2c3e50;
    --light-bg: #ecf0f1;
    --white: #ffffff;
    --gray: #7f8c8d;
    --border: #bdc3c7;
}

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

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

.ad-notice {
    background: #fffbea;
    padding: 8px 0;
    text-align: center;
    font-size: 13px;
    color: #856404;
    border-bottom: 1px solid #ffeaa7;
}

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

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
}

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

.nav-links {
    display: flex;
    list-style: none;
    gap: 35px;
    align-items: center;
}

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

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

.hero-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 100px 0 120px;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-content {
    display: flex;
    align-items: center;
    gap: 60px;
}

.hero-text {
    flex: 1;
}

.hero-text h1 {
    font-size: 52px;
    line-height: 1.2;
    margin-bottom: 25px;
    font-weight: 800;
}

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

.hero-image {
    flex: 1;
    position: relative;
}

.hero-image img {
    width: 100%;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(231, 76, 60, 0.4);
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

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

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

.card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
    flex: 1;
    min-width: 300px;
}

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

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

.card-content {
    padding: 30px;
}

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

.card-content p {
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.7;
}

.price-tag {
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 20px;
}

.section {
    padding: 80px 0;
}

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

.section-title {
    font-size: 42px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary);
    font-weight: 700;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
}

.feature-card {
    background: var(--white);
    padding: 40px;
    border-radius: 16px;
    flex-basis: calc(33.333% - 30px);
    min-width: 280px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), #667eea);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: var(--white);
    margin-bottom: 25px;
}

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

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

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary);
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.about-image {
    flex: 1;
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 16px;
    background: var(--light-bg);
}

.form-section {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 80px 0;
    color: var(--white);
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
    background: var(--white);
    padding: 50px;
    border-radius: 20px;
    color: var(--text);
}

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

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

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

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

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.submit-btn {
    width: 100%;
    padding: 18px;
    background: var(--secondary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.submit-btn:hover {
    background: #c0392b;
    transform: translateY(-2px);
}

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

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 60px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

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

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

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    line-height: 2;
    display: block;
}

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

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

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

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

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

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

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

.cookie-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s;
}

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

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

.cookie-accept:hover {
    background: #2980b9;
}

.cookie-reject:hover {
    background: #636e72;
}

.testimonials {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 50px 0;
}

.testimonial-card {
    background: var(--white);
    padding: 35px;
    border-radius: 16px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    flex: 1;
    min-width: 300px;
    border-left: 4px solid var(--accent);
}

.testimonial-text {
    font-style: italic;
    color: var(--gray);
    margin-bottom: 20px;
    line-height: 1.8;
}

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

.service-selector {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin: 40px 0;
}

.service-option {
    flex: 1;
    min-width: 250px;
    background: var(--white);
    border: 3px solid var(--border);
    border-radius: 12px;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.service-option:hover {
    border-color: var(--accent);
    transform: translateY(-3px);
}

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

.service-option h3 {
    color: var(--primary);
    margin-bottom: 10px;
}

.service-option .price {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
    margin-top: 15px;
}

.thanks-container {
    text-align: center;
    padding: 100px 20px;
    min-height: 60vh;
}

.thanks-icon {
    width: 100px;
    height: 100px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    font-size: 50px;
    color: var(--white);
}

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

.thanks-container p {
    font-size: 18px;
    color: var(--gray);
    margin-bottom: 30px;
}

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

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

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

.legal-content p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--gray);
}

.legal-content ul {
    margin-left: 30px;
    margin-bottom: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    color: var(--gray);
}

.contact-info {
    background: var(--white);
    padding: 50px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    margin: 40px 0;
}

.contact-info h2 {
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--primary);
}

.info-item {
    margin-bottom: 25px;
}

.info-item strong {
    display: block;
    color: var(--primary);
    margin-bottom: 8px;
    font-size: 18px;
}

.info-item p {
    color: var(--gray);
    font-size: 16px;
}

.disclaimer {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    padding: 25px;
    margin: 40px 0;
    border-radius: 8px;
}

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

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column;
    }

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

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

    .nav-links {
        gap: 20px;
        flex-wrap: wrap;
    }

    .cards-grid {
        flex-direction: column;
    }

    .feature-card {
        flex-basis: 100%;
    }
}
