/* ===== ОСНОВНЫЕ СТИЛИ ===== */

.cookie-banner {
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 300px;
    background-color: #444;
    color: #fff;
    padding: 20px;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
    border-radius: 8px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    z-index: 1000;
}
.cookie-banner.show {
    opacity: 1;
}
.cookie-banner p {
    margin: 0;
    margin-bottom: 10px;
    font-size: 14px;
}
.cookie-banner button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 15px;
    cursor: pointer;
    border-radius: 5px;
    transition: background-color 0.3s ease;
}
.cookie-banner button:hover {
    background-color: #0056b3;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', sans-serif;
    background: #f5f5f5;
}

/* ===== НАВИГАЦИЯ ===== */
.nav-wrapper {
    background: linear-gradient(135deg, #4A90E2, #9013FE);
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 0 20px;
}

.brand-logo {
    font-weight: 700;
    letter-spacing: 1px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
    font-size: 1.8rem !important;
}

.sidenav-trigger i {
    font-size: 2rem;
}

/* ===== HERO СЕКЦИЯ ===== */
.hero {
    padding: 80px 0;
    color: white;
    position: relative;
    overflow: hidden;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.95;
}

.hero .btn {
    background: white;
    color: #9013FE;
    font-weight: 600;
    border-radius: 50px;
    padding: 12px 30px;
    transition: all 0.3s ease;
}

.hero .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ===== СЕКЦИЯ С КАРТОЙ ===== */
section[style*="display: flex"] {
    background: #fff;
    margin: 40px 0;
}

section[style*="display: flex"] h1 {
    font-size: 2rem;
    color: #333;
    padding: 20px;
}

/* ===== КАРТОЧКИ ПРЕИМУЩЕСТВ ===== */
#our-advantages .card {
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

#our-advantages .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

#our-advantages .card-title {
    font-weight: 700;
    color: #4A90E2;
}

/* ===== УСЛУГИ ===== */
.services {
    background: #f8f9fa;
    padding: 60px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.service-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #4A90E2;
}

/* ===== КОНТАКТНАЯ ФОРМА ===== */
#contact {
    background: white;
    padding: 60px 0;
}

#contact .header {
    text-align: center;
    margin-bottom: 40px;
    font-size: 2.5rem;
    font-weight: 700;
}

.input-field input:focus,
.input-field textarea:focus {
    border-bottom: 2px solid #9013FE !important;
    box-shadow: 0 1px 0 0 #9013FE !important;
}

/* ===== О НАС ===== */
#about {
    background: #f8f9fa;
    padding: 60px 0;
}

#about h2 {
    margin-bottom: 30px;
    font-size: 2.5rem;
    font-weight: 700;
}

#about p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
}

/* ===== СЛАЙДЕР (ОТЗЫВЫ) ===== */
#testimonials {
    background: white;
    padding: 60px 0;
}

#testimonials h2 {
    margin-bottom: 40px;
}

.slider .slides {
    background: transparent;
}

.slider .slides blockquote {
    background: #f8f9fa;
    padding: 30px;
    border-radius: 15px;
    border-left: 4px solid #9013FE;
    margin: 20px;
}

.slider .slides blockquote p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #333;
    font-style: italic;
}

.slider .slides blockquote cite {
    display: block;
    margin-top: 15px;
    font-size: 0.9rem;
    color: #9013FE;
    font-weight: 600;
}

/* Индикаторы слайдера */
.slider .indicators .indicator-item {
    background-color: #ccc;
}

.slider .indicators .indicator-item.active {
    background-color: #9013FE;
}

/* ===== ФУТЕР ===== */
.page-footer {
    background: linear-gradient(135deg, #2c3e50, #1a1a2e);
    color: white;
    padding-top: 40px;
}

.page-footer a {
    color: #ddd;
    transition: color 0.3s ease;
}

.page-footer a:hover {
    color: #4A90E2;
}

.footer-copyright {
    background: rgba(0,0,0,0.2);
    padding: 20px 0;
}

/* ===== МОДАЛЬНЫЕ ОКНА ===== */
.modal {
    border-radius: 15px;
}

.modal .modal-content h4 {
    color: #4A90E2;
    margin-bottom: 20px;
}

.modal .btn {
    background: linear-gradient(135deg, #4A90E2, #9013FE);
    border-radius: 50px;
    margin-top: 10px;
}

.modal .btn:hover {
    opacity: 0.9;
}

/* ===== АНИМАЦИИ ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* ===== АДАПТИВНОСТЬ ===== */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero {
        padding: 50px 0;
        text-align: center;
    }
    
    .section-title,
    #contact .header,
    #about h2,
    #testimonials h2 {
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.2rem;
    }
    
    .slider .slides blockquote {
        margin: 10px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .brand-logo {
        font-size: 1.2rem !important;
    }
    
    .hero h1 {
        font-size: 1.5rem;
    }
    
    .cookie-banner {
        width: 90%;
        right: 5%;
        bottom: 5%;
    }
}







 .cookie-banner {
            position: fixed;
            bottom: 10px;
            right: 10px;
            width: 300px;
            background-color: #444;
            color: #fff;
            padding: 20px;
            box-shadow: 0 0 15px rgba(0, 0, 0, 0.3);
            border-radius: 8px;
            box-sizing: border-box;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .cookie-banner.show {
            opacity: 1;
        }
        .cookie-banner p {
            margin: 0;
            margin-bottom: 10px;
            font-size: 14px;
        }
        .cookie-banner button {
            background-color: #007bff;
            color: white;
            border: none;
            padding: 10px 15px;
            cursor: pointer;
            border-radius: 5px;
            transition: background-color 0.3s ease;
        }
        .cookie-banner button:hover {
            background-color: #0056b3;
        }
* {
    background-size: cover;
    background-position: center center;
}
body {
	margin: 0px;
}
