.hero {
    position: relative;
    background-size: cover;
    background-position: 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 .title, .hero .subtitle {
    text-shadow: 0 2px 5px rgba(0,0,0,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, #1e3c72);
    border-radius: 2px;
}
.white-text {
    color: white;
}
.white-text::after {
    background: white;
}
.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: 380px;
}
.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, #1e3c72);
    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, #1e3c72);
    width: 28px;
    border-radius: 5px;
}
.about-section {
    padding: 80px 20px;
    background: white;
}
.advantages-section {
    padding: 80px 20px;
    background: #f8fafc;
}
.advantage-box {
    transition: all 0.3s;
    border-radius: 20px;
    height: 100%;
}
.advantage-box:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59,130,246,0.15);
}
.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3b82f615, #1e3c7215);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.advantage-icon i {
    font-size: 32px;
    color: #3b82f6;
}
.services-section {
    padding: 80px 20px;
    background: white;
}
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.service-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(59,130,246,0.1);
}
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3b82f6, #1e3c72);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon i {
    font-size: 36px;
    color: white;
}
.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}
.service-card p {
    color: #64748b;
    line-height: 1.6;
}
.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, #1e3c72);
    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: 1.2rem; }
    .section-title { font-size: 1.8rem; }
    .testimonials-slider { min-height: 480px; }
    .testimonial-slide { padding: 28px 20px; }
    .testimonial-text { font-size: 1rem; }
    .slider-prev, .slider-next { width: 40px; height: 40px; }
    .services-grid { grid-template-columns: 1fr; }
}





 .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;
}
