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

:root {
    --primary-color: #2c3e50;
    --secondary-color: #e67e22;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --bg-dark: #1a252f;
    --white: #ffffff;
    --border-color: #ddd;
}

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

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

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

.hidden {
    display: none;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-dark);
    color: var(--white);
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -4px 12px rgba(0,0,0,0.15);
}

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

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

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

.btn-accept,
.btn-reject {
    padding: 10px 24px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    border-radius: 4px;
    transition: all 0.3s ease;
}

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

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

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

.btn-reject:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}

.main-header {
    background: var(--white);
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

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

.brand {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
}

.main-nav {
    display: flex;
    gap: 30px;
    align-items: center;
}

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

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

.ad-notice {
    font-size: 12px;
    color: var(--text-light);
    font-style: italic;
    padding-left: 20px;
    border-left: 1px solid var(--border-color);
}

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

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
}

.hero-section {
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('https://images.unsplash.com/photo-1416331108676-a22ccb276e35?w=1600') center/cover;
    min-height: 600px;
    display: flex;
    align-items: center;
    color: var(--white);
}

.hero-overlay {
    width: 100%;
    padding: 80px 20px;
}

.hero-section h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    max-width: 700px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 20px;
    margin-bottom: 40px;
    max-width: 600px;
    opacity: 0.95;
}

.cta-primary {
    display: inline-block;
    background: var(--secondary-color);
    color: var(--white);
    padding: 16px 36px;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
}

.cta-primary:hover {
    background: #d35400;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.intro-section {
    padding: 80px 20px;
}

.intro-text {
    font-size: 22px;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: center;
}

.value-section {
    padding: 100px 20px;
}

.dark-bg {
    background: var(--bg-dark);
    color: var(--white);
}

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

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

.split-content.reverse {
    flex-direction: row-reverse;
}

.content-text {
    flex: 1;
}

.content-text h2 {
    font-size: 36px;
    margin-bottom: 24px;
    line-height: 1.3;
}

.content-text p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 16px;
    opacity: 0.9;
}

.content-image {
    flex: 1;
}

.content-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.services-preview {
    padding: 100px 20px;
}

.section-title {
    font-size: 40px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.section-title.centered {
    text-align: center;
}

.section-intro {
    text-align: center;
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.services-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.service-card {
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 30px;
    flex: 1;
    min-width: 300px;
    max-width: 350px;
    transition: all 0.3s ease;
}

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

.service-icon img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 20px;
}

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

.service-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-light);
    margin-bottom: 20px;
}

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

.select-service {
    width: 100%;
    padding: 12px 24px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.select-service:hover {
    background: #1a252f;
    transform: translateY(-2px);
}

.service-card.selected {
    border: 2px solid var(--secondary-color);
    box-shadow: 0 8px 24px rgba(230, 126, 34, 0.3);
}

.process-section {
    padding: 100px 20px;
}

.process-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    text-align: center;
    color: var(--primary-color);
}

.process-steps {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
}

.step {
    flex: 1;
    min-width: 250px;
    max-width: 280px;
    text-align: center;
}

.step-number {
    font-size: 48px;
    font-weight: 700;
    color: var(--secondary-color);
    opacity: 0.3;
    margin-bottom: 16px;
}

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

.step p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.testimonials-section {
    padding: 100px 20px;
}

.testimonials-section h2 {
    font-size: 36px;
    margin-bottom: 60px;
    color: var(--primary-color);
}

.centered {
    text-align: center;
}

.testimonial {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 4px solid var(--secondary-color);
}

.quote {
    font-size: 18px;
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.author {
    font-weight: 600;
    color: var(--text-light);
    font-size: 16px;
}

.form-section {
    padding: 100px 20px;
}

.form-section h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.form-intro {
    text-align: center;
    font-size: 18px;
    margin-bottom: 50px;
    opacity: 0.9;
}

.contact-form {
    background: rgba(255,255,255,0.1);
    padding: 50px;
    border-radius: 8px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 16px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 4px;
    font-size: 16px;
    background: rgba(255,255,255,0.95);
    color: var(--text-dark);
}

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

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

.btn-submit:hover {
    background: #d35400;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 126, 34, 0.4);
}

.trust-section {
    padding: 80px 20px;
}

.trust-grid {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    justify-content: center;
}

.trust-item {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    text-align: center;
}

.trust-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
    color: var(--primary-color);
}

.trust-item p {
    font-size: 16px;
    color: var(--text-light);
}

.disclaimer-section {
    padding: 60px 20px;
    background: #fff9f0;
}

.disclaimer-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-dark);
    text-align: center;
}

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

.footer-grid {
    display: flex;
    gap: 50px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-col {
    flex: 1;
    min-width: 200px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.8;
}

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

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

.footer-col ul li a {
    color: var(--white);
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-col ul li a:hover {
    opacity: 1;
}

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

@media (max-width: 768px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        background: var(--white);
        flex-direction: column;
        padding: 30px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
        transition: left 0.3s ease;
        gap: 20px;
        align-items: flex-start;
    }

    .main-nav.active {
        left: 0;
    }

    .hamburger {
        display: flex;
    }

    .ad-notice {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid var(--border-color);
        padding-top: 20px;
    }

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

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

    .split-content,
    .split-content.reverse {
        flex-direction: column;
    }

    .content-text h2 {
        font-size: 28px;
    }

    .section-title {
        font-size: 30px;
    }

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

    .service-card {
        max-width: 100%;
    }

    .process-steps {
        flex-direction: column;
    }

    .contact-form {
        padding: 30px 20px;
    }

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