.hero-section {
    position: relative;
    height: 72vh;
    background-image: url(img/image_69c907aacd94a.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.6) 0%, rgba(0,0,0,0.4) 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, #10b981, #059669);
    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(16,185,129,0.3);
}
.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 50px;
    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, #10b981, #059669);
    border-radius: 2px;
}
.white-text {
    color: white;
}
.white-text::after {
    background: white;
}
.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(-8px);
    box-shadow: 0 20px 40px rgba(16,185,129,0.15);
}
.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #10b98115, #05966915);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.advantage-icon i {
    font-size: 32px;
    color: #10b981;
}
.advantage-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}
.advantage-card p {
    color: #64748b;
    line-height: 1.6;
}
.contact-section {
    padding: 80px 20px;
    background: #d1fae5;
}
.contact-form {
    max-width: 700px;
    margin: 0 auto;
    background: white;
    padding: 35px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.05);
}
.form-input, .form-textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    transition: all 0.3s;
}
.form-input:focus, .form-textarea:focus {
    outline: none;
    border-color: #10b981;
    box-shadow: 0 0 0 3px rgba(16,185,129,0.1);
}
.form-textarea {
    min-height: 120px;
}
.submit-btn {
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border: none;
    padding: 12px 32px;
    border-radius: 40px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
}
.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(16,185,129,0.3);
}
.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(16,185,129,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: #10b981;
    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, #10b981, #059669);
    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, #10b981, #059669);
    width: 28px;
    border-radius: 5px;
}
.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(16,185,129,0.15);
}
.service-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #10b98115, #05966915);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-icon i {
    font-size: 36px;
    color: #10b981;
}
.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #1e293b;
}
.service-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 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: #10b981;
}
.social-links a {
    display: inline-block;
    margin-right: 15px;
}
.social-links i {
    margin-right: 5px;
}
.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, #10b981, #059669);
    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; }
    .advantages-grid, .services-grid { grid-template-columns: 1fr; }
    .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: #333;
            color: #fff;
            padding: 20px;
            text-align: center;
            box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
        }
        .cookie-banner button {
            background-color: #4CAF50;
            color: white;
            border: none;
            padding: 10px 20px;
            margin-top: 10px;
            cursor: pointer;
        }
        .cookie-banner button:hover {
            background-color: #45a049;
* {
    background-size: cover;
    background-position: center center;
}
body {
	margin: 0px;
}
