       :root {
            --dark-anthracite: #1a1a1a;
            --light-anthracite: #2d2d2d;
            --soft-orange: #e6844a;
            --soft-orange-hover: #cf7337;
            --light-gray: #f5f5f5;
            --text-light: #ffffff;
            --text-dark: #333333;
        }
        
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
        }
        
        body {
            background-color: #f9f9f9;
            color: var(--text-dark);
            line-height: 1.6;
        }
        
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        
        /* Header */
        header {
            background-color: var(--dark-anthracite);
            color: var(--text-light);
            padding: 15px 0;
            position: fixed;
            width: 100%;
            top: 0;
            z-index: 1000;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
        }
        
        .header-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        
        .logo {
            display: flex;
            align-items: center;
        }
        
        .logo img {
            height: 40px;
            margin-right: 10px;
        }
        
        a {
  text-decoration:
none;
}
        
        .logo-text {
            font-size: 24px;
            font-weight: 700;
        }
        
        .logo-text span {
            color: var(--soft-orange);
        }
        
        nav ul {
            display: flex;
            list-style: none;
        }
        
        nav ul li {
            margin-left: 25px;
        }
        
        nav ul li a {
            color: var(--text-light);
            text-decoration: none;
            font-weight: 500;
            transition: color 0.3s;
        }
        
        nav ul li a:hover {
            color: var(--soft-orange);
        }
        
        .mobile-menu-btn {
            display: none;
            background: none;
            border: none;
            color: white;
            font-size: 24px;
            cursor: pointer;
        }
        
        .phone-number {
            display: flex;
            align-items: center;
            color: var(--text-light);
            font-weight: 700;
            font-size: 18px;
            text-decoration: none;
        }
        
        .phone-number svg {
            margin-right: 8px;
            fill: var(--soft-orange);
        }
        
        /* Hero Section */
.hero {
    background-image: url('/Car-Removal-Services.webp'); /* Здесь будет ваше реальное изображение */
    background-size: cover;
    background-position: center;
    color: var(--text-light);
    padding: 240px 0 160px;
    position: relative;
    overflow: hidden;
}

/* Затемняющий оверлей для лучшей читаемости текста на фоне изображения */
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 10, 39, 0.66); /* Затемнение фонового изображения */
    z-index: 1;
}

/* Не нужна отдельная картинка справа, если используем фоновое изображение на всю секцию */
.hero-image {
    display: none;
}

/* При необходимости можно добавить градиент для лучшей читаемости текста */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

/* Увеличиваем z-index контента для отображения поверх оверлея */
.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}
        
        
        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            margin-bottom: 20px;
            line-height: 1.2;
        }
        
        .hero h1 span {
            color: var(--soft-orange);
        }
        
        .hero p {
            font-size: 18px;
            margin-bottom: 30px;
            opacity: 0.9;
        }
        
        .btn {
            display: inline-block;
            background-color: var(--soft-orange);
            color: white;
            padding: 14px 32px;
            border-radius: 4px;
            text-decoration: none;
            font-weight: 600;
            font-size: 16px;
            transition: background-color 0.3s;
            border: none;
            cursor: pointer;
        }
        
        .btn:hover {
            background-color: var(--soft-orange-hover);
        }
        
        .btn-outline {
            background-color: transparent;
            border: 2px solid var(--soft-orange);
            color: var(--soft-orange);
            margin-left: 15px;
        }
        
        .btn-outline:hover {
            background-color: var(--soft-orange);
            color: white;
        }
        
        .hero-image {
            position: absolute;
            right: 0;
            bottom: 0;
            width: 55%;
            height: 100%;
            z-index: 1;
            background-size: cover;
            background-position: center;
            opacity: 0.6;
        }
		
    /* Features Section */
    .features {
        padding: 80px 0;
        background-color: white;
    }
    
    .section-title {
        text-align: center;
        margin-bottom: 60px;
    }
    
    .section-title h2 {
        font-size: 36px;
        color: var(--dark-anthracite);
        margin-bottom: 15px;
    }
    
    .section-title p {
        color: #777;
        max-width: 700px;
        margin: 0 auto;
    }
    
    .features-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .feature-card {
        background-color: white;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s, box-shadow 0.3s;
        text-align: center;
    }
    
    .feature-card:hover {
        transform: translateY(-10px);
        box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
    }
    
    .feature-icon {
        width: 70px;
        height: 70px;
        background-color: var(--light-anthracite);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 20px;
    }
    
    .feature-icon svg {
        width: 35px;
        height: 35px;
        fill: var(--soft-orange);
    }
    
    .feature-card h3 {
        font-size: 20px;
        margin-bottom: 15px;
        color: var(--dark-anthracite);
    }
    
    .feature-card p {
        color: #666;
    }
    
    /* Services Section */
    .services {
        padding: 80px 0;
        background-color: var(--light-gray);
    }
    
    .services-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .service-card {
        display: flex;
        align-items: center;
        background-color: white;
        border-radius: 8px;
        padding: 30px;
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
        transition: transform 0.3s;
    }
    
    .service-card:hover {
        transform: translateY(-5px);
    }
    
    .service-icon {
        min-width: 60px;
        height: 60px;
        background-color: var(--light-anthracite);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
    }
    
    .service-icon svg {
        width: 30px;
        height: 30px;
        fill: var(--soft-orange);
    }
    
    .service-content h3 {
        font-size: 20px;
        margin-bottom: 10px;
        color: var(--dark-anthracite);
    }
    
    .service-content p {
        color: #666;
        font-size: 15px;
    }
	
    /* Pricing Section */
    .pricing {
        padding: 80px 0;
        background-color: white;
    }
    
    .pricing-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .pricing-card {
        background-color: white;
        border: 1px solid #eee;
        border-radius: 8px;
        padding: 40px 30px;
        text-align: center;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    
    .pricing-card:hover {
        transform: scale(1.03);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    .pricing-card.featured {
        border: none;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        position: relative;
        overflow: hidden;
    }
    
    .pricing-card.featured::before {
        content: 'Популярный';
        position: absolute;
        top: 0;
        right: 0;
        background-color: var(--soft-orange);
        color: white;
        padding: 5px 15px;
        font-size: 12px;
        font-weight: 600;
        border-bottom-left-radius: 8px;
    }
    
    .pricing-icon {
        width: 80px;
        height: 80px;
        margin: 0 auto 20px;
    }
    
    .pricing-title {
        font-size: 22px;
        font-weight: 700;
        margin-bottom: 15px;
        color: var(--dark-anthracite);
    }
    
    .pricing-price {
        font-size: 36px;
        font-weight: 800;
        color: var(--soft-orange);
        margin-bottom: 20px;
    }
    
    .pricing-price span {
        font-size: 16px;
        font-weight: 400;
        color: #777;
    }
    
    .pricing-features {
        list-style: none;
        margin-bottom: 30px;
    }
    
    .pricing-features li {
        padding: 10px 0;
        border-bottom: 1px solid #eee;
        color: #666;
    }
    
    .pricing-features li:last-child {
        border-bottom: none;
    }
    
    /* Testimonials Section */
    .testimonials {
        padding: 80px 0;
        background-color: var(--light-anthracite);
        color: white;
    }
    
    .testimonials .section-title h2 {
        color: white;
    }
    
    .testimonials .section-title p {
        color: rgba(255, 255, 255, 0.7);
    }
    
    .testimonials-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    
    .testimonial-card {
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 8px;
        padding: 30px;
        position: relative;
    }
    
    .testimonial-content {
        margin-bottom: 20px;
        font-style: italic;
        color: rgba(255, 255, 255, 0.9);
    }
    
    .testimonial-author {
        display: flex;
        align-items: center;
    }
    
    .author-avatar {
        width: 50px;
        height: 50px;
        border-radius: 50%;
        margin-right: 15px;
        background-color: var(--soft-orange);
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        color: white;
    }
    
    .author-info h4 {
        font-size: 18px;
        margin-bottom: 5px;
    }
    
    .author-info p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.7);
    }
    
    .testimonial-rating {
        position: absolute;
        top: 20px;
        right: 20px;
        color: var(--soft-orange);
    }
    
    /* Call-to-action */
    .cta {
        padding: 80px 0;
        background-color: var(--soft-orange);
        color: white;
        text-align: center;
    }
    
    .cta h2 {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .cta p {
        font-size: 18px;
        margin-bottom: 30px;
        max-width: 700px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .cta .btn {
        background-color: white;
        color: var(--soft-orange);
    }
    
    .cta .btn:hover {
        background-color: var(--dark-anthracite);
        color: white;
    }
    
    .cta .btn-outline {
        background-color: transparent;
        border: 2px solid white;
        color: white;
    }
    
    .cta .btn-outline:hover {
        background-color: white;
        color: var(--soft-orange);
    }
	
	   /* Contact Section */
    .contact {
        padding: 80px 0;
        background-color: white;
    }
    
    .contact-container {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 50px;
    }
    
    .contact-info h3 {
        font-size: 28px;
        margin-bottom: 20px;
        color: var(--dark-anthracite);
    }
    
    .contact-details {
        margin-bottom: 30px;
    }
    
    .contact-item {
        display: flex;
        margin-bottom: 20px;
    }
    
    .contact-icon {
        min-width: 40px;
        height: 40px;
        background-color: var(--soft-orange);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 15px;
    }
    
    .contact-icon svg {
        width: 20px;
        height: 20px;
        fill: white;
    }
    
    .contact-text h4 {
        font-size: 18px;
        margin-bottom: 5px;
        color: var(--dark-anthracite);
    }
    
    .contact-text p, .contact-text a {
        color: #666;
        text-decoration: none;
    }
    
    .contact-text a:hover {
        color: var(--soft-orange);
    }
    
    .contact-form .form-group {
        margin-bottom: 20px;
    }
    
    .contact-form label {
        display: block;
        margin-bottom: 8px;
        font-weight: 500;
        color: var(--dark-anthracite);
    }
    
    .contact-form input, .contact-form textarea {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
        transition: border-color 0.3s;
    }
    
    .contact-form input:focus, .contact-form textarea:focus {
        border-color: var(--soft-orange);
        outline: none;
    }
    
    .contact-form textarea {
        height: 150px;
        resize: vertical;
    }
    
    select {
        width: 100%;
        padding: 12px 15px;
        border: 1px solid #ddd;
        border-radius: 4px;
        font-size: 16px;
        transition: border-color 0.3s;
        background-color: white;
        appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23E6844A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 10px center;
        background-size: 20px;
    }
    
    select:focus {
        border-color: var(--soft-orange);
        outline: none;
    }
	
	   /* Footer */
    footer {
        background-color: var(--dark-anthracite);
        color: rgba(255, 255, 255, 0.7);
        padding: 60px 0 20px;
    }
    
    .footer-container {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .footer-logo {
        margin-bottom: 20px;
    }
    
    .footer-about p {
        margin-bottom: 20px;
    }
    
    .social-links {
        display: flex;
    }
    
    .social-link {
        width: 36px;
        height: 36px;
        background-color: rgba(255, 255, 255, 0.1);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 10px;
        transition: background-color 0.3s;
    }
    
    .social-link:hover {
        background-color: var(--soft-orange);
    }
    
    .social-link svg {
        width: 18px;
        height: 18px;
        fill: white;
    }
    
    .footer-title {
        font-size: 18px;
        font-weight: 700;
        color: white;
        margin-bottom: 20px;
    }
    
    .footer-links {
        list-style: none;
    }
    
    .footer-links li {
        margin-bottom: 10px;
    }
    
    .footer-links li a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        transition: color 0.3s;
    }
    
    .footer-links li a:hover {
        color: var(--soft-orange);
    }
    
    .footer-bottom {
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        text-align: center;
        font-size: 14px;
    }
    
    /* Animations */
    @keyframes fadeIn {
        from { opacity: 0; transform: translateY(20px); }
        to { opacity: 1; transform: translateY(0); }
    }
    
    .hero-content {
        animation: fadeIn 1s ease-out;
    }
    
    .feature-card, .service-card, .pricing-card, .testimonial-card {
        animation: fadeIn 0.6s ease-out;
        animation-fill-mode: both;
    }
    
    .feature-card:nth-child(1), .service-card:nth-child(1), .pricing-card:nth-child(1), .testimonial-card:nth-child(1) {
        animation-delay: 0.1s;
    }
    
    .feature-card:nth-child(2), .service-card:nth-child(2), .pricing-card:nth-child(2), .testimonial-card:nth-child(2) {
        animation-delay: 0.3s;
    }
    
    .feature-card:nth-child(3), .service-card:nth-child(3), .pricing-card:nth-child(3), .testimonial-card:nth-child(3) {
        animation-delay: 0.5s;
    }
    
    .feature-card:nth-child(4), .service-card:nth-child(4) {
        animation-delay: 0.7s;
    }
    
    /* Hero background */
    .hero::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: var(--dark-anthracite);
        opacity: 0.6;
        z-index: 0;
    }
    
    /* Media Queries */
    @media (max-width: 992px) {
        .features-grid, .services-grid, .pricing-grid, .testimonials-grid {
            grid-template-columns: repeat(2, 1fr);
        }
        
        .contact-container, .footer-container {
            grid-template-columns: 1fr;
            gap: 40px;
        }
        
        .hero-image {
            width: 100%;
            opacity: 0.3;
        }
        
        .hero-content {
            max-width: 100%;
            text-align: center;
        }
    }
    
    @media (max-width: 768px) {
        .header-container {
            flex-direction: row;
            justify-content: space-between;
        }
        
        .logo {
            z-index: 1001;
        }
        
        .mobile-menu-btn {
            display: block;
            z-index: 1001;
        }
        
        nav {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--dark-anthracite);
            transform: translateY(-100%);
            transition: transform 0.3s ease-in-out;
            z-index: 1000;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        nav.active {
            transform: translateY(0);
        }
        
        nav ul {
            flex-direction: column;
            align-items: center;
        }
        
        nav ul li {
            margin: 15px 0;
            margin-left: 0;
        }
        
        .phone-number {
            display: none;
        }
        
        .features-grid, .services-grid, .pricing-grid, .testimonials-grid {
            grid-template-columns: 1fr;
        }
        
        .hero h1 {
            font-size: 36px;
        }
        
        .btn {
            display: block;
            width: 100%;
            margin-bottom: 15px;
        }
        
        .btn-outline {
            margin-left: 0;
        }
        
        .footer-container {
            grid-template-columns: 1fr;
        }
    }
    
    @media (max-width: 480px) {
        .hero h1 {
            font-size: 28px;
        }
        
        .section-title h2 {
            font-size: 28px;
        }
        
        .feature-card, .service-card, .pricing-card, .testimonial-card {
            padding: 20px;
        }
    }
    
    .seo-text {
    padding: 70px 0;
    background-color: #f9f9f9;
    padding-top: 80px;
  padding-bottom: 80px;
}

.seo-text .section-title {
    font-size: 2.2rem;
    color: var(--dark-anthracite);
    margin-bottom: 30px;
    text-align: center;
}

.seo-content {
    max-width: 1000px;
    margin: 0 auto;
    color: #444;
    line-height: 1.7;
}

.seo-content h3 {
    color: var(--dark-anthracite);
    margin: 30px 0 15px;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.seo-content p {
    margin-bottom: 15px;
}

.seo-content strong {
    color: var(--soft-orange);
}

.seo-content ul, 
.seo-content ol {
    margin-bottom: 20px;
    margin-left: 20px;
}

.seo-content li {
    margin-bottom: 8px;
}

.seo-content a {
    color: var(--soft-orange);
    text-decoration: none;
    transition: color 0.3s ease;
}

.seo-content a:hover {
    color: var(--soft-orange-hover);
    text-decoration: underline;
}

@media (max-width: 768px) {
    .seo-text {
        padding: 50px 0;
    }
    
    .seo-text .section-title {
        font-size: 1.8rem;
    }
    
    .seo-content h3 {
        font-size: 1.3rem;
    }
}