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

:root {
    --primary: #d32f2f;
    --primary-dark: #9a0007;
    --secondary: #212121;
    --text-dark: #1a1a1a;
    --text-light: #666;
    --bg-light: #f5f5f5;
    --bg-white: #ffffff;
    --border: #e0e0e0;
    --success: #2e7d32;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

nav {
    background: var(--secondary);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
}

.logo {
    color: var(--bg-white);
    font-size: 26px;
    font-weight: 700;
    text-decoration: none;
    padding: 20px 0;
    letter-spacing: -0.5px;
}

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

.nav-links a {
    color: var(--bg-white);
    text-decoration: none;
    padding: 28px 22px;
    display: block;
    transition: background 0.3s;
    font-weight: 500;
}

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

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

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

.hero-section {
    background: linear-gradient(135deg, rgba(211, 47, 47, 0.95), rgba(33, 33, 33, 0.9)), url('https://images.unsplash.com/photo-1486262715619-67b85e0b08d3?w=1400&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: var(--bg-white);
    padding: 140px 40px 120px;
    text-align: left;
    position: relative;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.hero-section h1 {
    font-size: 62px;
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.1;
    max-width: 800px;
}

.hero-section p {
    font-size: 22px;
    margin-bottom: 36px;
    max-width: 650px;
    line-height: 1.5;
}

.cta-primary {
    background: var(--primary);
    color: var(--bg-white);
    padding: 18px 48px;
    text-decoration: none;
    border-radius: 6px;
    font-weight: 700;
    font-size: 18px;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.cta-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 47, 47, 0.4);
}

.section-alt {
    background: var(--bg-light);
    padding: 90px 40px;
}

.section-white {
    background: var(--bg-white);
    padding: 90px 40px;
}

.section-dark {
    background: var(--secondary);
    color: var(--bg-white);
    padding: 90px 40px;
}

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

.section-title {
    font-size: 44px;
    margin-bottom: 16px;
    font-weight: 700;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 20px;
    color: var(--text-light);
    margin-bottom: 50px;
    max-width: 700px;
}

.section-dark .section-subtitle {
    color: #ccc;
}

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

.service-card {
    background: var(--bg-white);
    padding: 40px 35px;
    border-radius: 8px;
    flex: 1;
    min-width: 320px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

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

.service-card h3 {
    font-size: 26px;
    margin-bottom: 14px;
    color: var(--text-dark);
}

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

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

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

.about-text {
    flex: 1;
}

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

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

.about-image img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    object-fit: cover;
    height: 450px;
}

.features-block {
    display: flex;
    flex-direction: column;
    gap: 50px;
    margin-top: 60px;
}

.feature-row {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.feature-item {
    flex: 1;
    padding: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
}

.feature-item h3 {
    font-size: 24px;
    margin-bottom: 12px;
}

.feature-item p {
    font-size: 16px;
    line-height: 1.7;
    color: #ddd;
}

.form-section {
    background: var(--bg-white);
    padding: 80px 40px;
}

.form-wrapper {
    max-width: 700px;
    margin: 0 auto;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border);
    border-radius: 6px;
    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(--primary);
}

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

.contact-info {
    background: var(--bg-light);
    padding: 80px 40px;
}

.info-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.info-block {
    flex: 1;
    min-width: 280px;
    background: var(--bg-white);
    padding: 35px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.06);
}

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

.info-block p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-dark);
}

footer {
    background: var(--secondary);
    color: var(--bg-white);
    padding: 60px 40px 30px;
}

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

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

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

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

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

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

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

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

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(33, 33, 33, 0.98);
    color: var(--bg-white);
    padding: 24px 40px;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    z-index: 2000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
}

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

.cookie-text {
    flex: 1;
    font-size: 15px;
    line-height: 1.6;
}

.cookie-text a {
    color: var(--primary);
    text-decoration: underline;
}

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

.btn-accept {
    background: var(--primary);
    color: var(--bg-white);
    padding: 12px 30px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: background 0.3s;
}

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

.btn-reject {
    background: transparent;
    color: var(--bg-white);
    padding: 12px 30px;
    border: 2px solid var(--bg-white);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.3s;
}

.btn-reject:hover {
    background: var(--bg-white);
    color: var(--secondary);
}

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

.legal-content h1 {
    font-size: 42px;
    margin-bottom: 20px;
}

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

.legal-content h3 {
    font-size: 22px;
    margin-top: 30px;
    margin-bottom: 12px;
}

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

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

.legal-content li {
    margin-bottom: 10px;
    line-height: 1.7;
}

.thanks-container {
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 40px;
    background: var(--bg-light);
}

.thanks-box {
    background: var(--bg-white);
    padding: 60px 80px;
    border-radius: 12px;
    text-align: center;
    max-width: 650px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

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

.thanks-box p {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.image-container {
    background-color: var(--bg-light);
    overflow: hidden;
}

.image-container img {
    object-fit: cover;
}

@media (max-width: 968px) {
    .nav-links {
        position: fixed;
        left: -100%;
        top: 73px;
        flex-direction: column;
        background: var(--secondary);
        width: 100%;
        text-align: left;
        transition: 0.3s;
        gap: 0;
        box-shadow: 0 10px 27px rgba(0,0,0,0.3);
    }

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

    .nav-links a {
        padding: 20px 40px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .hamburger {
        display: flex;
    }

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

    .hero-section p {
        font-size: 18px;
    }

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

    .about-image {
        min-width: 100%;
    }

    .feature-row {
        flex-direction: column;
    }

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

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

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

    .nav-container {
        padding: 0 20px;
    }

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