.hero-section {
    position: relative;
    min-height: 74vh;
    background-image: url(img/image_69cae4d8d3f62.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.5) 100%);
}
.hero-content {
    position: relative;
    z-index: 2;
    padding: 20px;
}
.hero-title {
    font-size: 3rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}
.hero-btn {
    display: inline-block;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
}
.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(59,130,246,0.3);
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 40px;
    color: #1e293b;
    position: relative;
    padding-bottom: 15px;
}
.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    border-radius: 2px;
}
.section-title-left {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #1e293b;
    position: relative;
    padding-bottom: 12px;
}
.section-title-left::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    border-radius: 2px;
}
.white-text {
    color: white;
}
.white-text::after {
    background: white;
}
.services-section {
    padding: 80px 20px;
    background: #f8fafc;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: white;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59,130,246,0.15);
}
.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3b82f615, #2563eb15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon i {
    font-size: 32px;
    color: #3b82f6;
}
.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}
.service-card p {
    color: #64748b;
    line-height: 1.6;
}
.about-section {
    padding: 80px 20px;
    background: white;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.about-text p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}
.contact-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}
.contact-info h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}
.contact-info p {
    margin-bottom: 10px;
}
.contact-info i {
    width: 30px;
    color: #3b82f6;
}
.contact-info a {
    color: #475569;
    text-decoration: none;
}
.contact-info a:hover {
    color: #3b82f6;
}
.about-images {
    display: flex;
    flex-direction: column;
    gap: 25px;
}
.about-images img {
    width: 100%;
}
.testimonials-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
}
.testimonials-slider {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    min-height: 400px;
}
.testimonial-slide {
    text-align: center;
    padding: 40px 35px;
    background: rgba(255,255,255,0.08);
    backdrop-filter: blur(12px);
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.2);
    display: none;
    animation: fadeInSlide 0.5s ease-out;
}
.testimonial-slide.active {
    display: block;
}
@keyframes fadeInSlide {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.testimonial-icon i {
    font-size: 48px;
    color: rgba(59,130,246,0.6);
    margin-bottom: 20px;
}
.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.6;
    color: white;
    font-style: italic;
    margin-bottom: 24px;
}
.testimonial-author {
    font-size: 1rem;
    font-weight: 600;
    color: #3b82f6;
    margin-bottom: 12px;
}
.testimonial-stars {
    color: #ffc107;
    font-size: 1rem;
    letter-spacing: 4px;
}
.slider-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    margin-top: 32px;
}
.slider-prev, .slider-next {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.15);
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    color: white;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-prev:hover, .slider-next:hover {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    transform: scale(1.1);
}
.slider-dots {
    display: flex;
    gap: 12px;
}
.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.3s;
}
.dot.active {
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    width: 28px;
    border-radius: 5px;
}
.advantages-section {
    padding: 80px 20px;
    background: #f8fafc;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.advantage-card {
    background: white;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}
.advantage-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(59,130,246,0.1);
}
.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3b82f615, #2563eb15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.advantage-icon i {
    font-size: 32px;
    color: #3b82f6;
}
.advantage-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}
.advantage-card p {
    color: #64748b;
    line-height: 1.6;
}
.footer {
    background: #0f172a;
    color: white;
    padding: 50px 20px 30px;
}
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
.footer-grid h2, .footer-grid h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
}
.footer-grid p, .footer-grid a {
    color: #94a3b8;
    text-decoration: none;
    margin-bottom: 8px;
    display: block;
}
.footer-grid a:hover {
    color: #3b82f6;
}
.footer-copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #1e293b;
    color: #64748b;
}
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    color: #fff;
    padding: 20px;
    text-align: center;
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.5s ease;
}
.cookie-banner.show {
    opacity: 1;
}
.cookie-banner p {
    max-width: 800px;
    margin: 0 auto 15px;
    font-size: 14px;
}
.cookie-banner button {
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    color: white;
    border: none;
    padding: 10px 30px;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: transform 0.3s;
}
.cookie-banner button:hover {
    transform: scale(1.05);
}
@media (max-width: 768px) {
    .hero-title { font-size: 2rem; }
    .hero-subtitle { font-size: 1rem; }
    .section-title { font-size: 1.8rem; }
    .services-grid, .advantages-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; gap: 30px; text-align: center; }
    .section-title-left::after { left: 50%; transform: translateX(-50%); }
    .section-title-left { text-align: center; }
    .testimonials-slider { min-height: 480px; }
    .testimonial-slide { padding: 28px 20px; }
    .testimonial-text { font-size: 1rem; }
    .slider-prev, .slider-next { width: 40px; height: 40px; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
}





.cookie-banner {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background-color: #000000cc; /* Полупрозрачный черный фон */
            color: #fff;
            padding: 15px 20px;
            box-sizing: border-box;
            text-align: center;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .cookie-banner.show {
            opacity: 1;
        }
        .cookie-banner p {
            margin: 0;
            font-size: 14px;
            flex: 1;
            text-align: left;
        }
        .cookie-banner button {
            background-color: #ff9800;
            color: #fff;
            border: none;
            padding: 10px 20px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
            margin-top: 10px;
            flex-shrink: 0;
        }
        .cookie-banner button:hover {
            background-color: #e68a00;
        }
* {
    background-size: cover;
    background-position: center center;
}
body {
	margin: 0px;
}
