.hero-section {
    position: relative;
    min-height: 92vh;
    background-image: url(img/image_69c907a33a4f3.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: 3.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
}
.hero-subtitle {
    font-size: 1.3rem;
    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 ease;
}
.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: 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, #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;
}
.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 ease;
    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: 80px;
    height: 80px;
    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: 36px;
    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;
}
.advantages-section {
    padding: 80px 20px;
    background: white;
}
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
.advantage-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    transition: all 0.3s ease;
}
.advantage-card:hover {
    transform: translateY(-5px);
    background: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
}
.advantage-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.advantage-icon i {
    font-size: 32px;
    color: white;
}
.advantage-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #1e293b;
}
.advantage-card p {
    color: #64748b;
    line-height: 1.6;
}
.map-section {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}
.map-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    pointer-events: auto;
}
.map-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(59,130,246,0.85) 0%, rgba(37,99,235,0.85) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
}
.map-card {
    background: white;
    padding: 40px 50px;
    border-radius: 32px;
    text-align: center;
    max-width: 480px;
    margin: 0 20px;
    animation: fadeInUp 0.6s ease-out;
    box-shadow: 0 30px 40px rgba(0,0,0,0.2);
    pointer-events: auto;
    transition: transform 0.3s;
}
.map-card:hover {
    transform: translateY(-5px);
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
.map-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #3b82f6, #2563eb);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}
.map-icon i {
    font-size: 36px;
    color: white;
}
.map-title {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: #1e293b;
}
.map-subtitle {
    font-size: 1rem;
    color: #475569;
    margin-bottom: 20px;
}
.map-address {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #f1f5f9;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    color: #334155;
}
.map-address i {
    color: #3b82f6;
}
.about-section {
    padding: 80px 20px;
    background: #f8fafc;
}
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}
.about-image img {
    width: 100%;
    border-radius: 20px;
}
.about-text p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 20px;
}
.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 {
    color: #94a3b8;
    margin-bottom: 8px;
}
.footer-grid a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s;
}
.footer-grid a:hover {
    color: #3b82f6;
}
.social-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.social-links a i {
    width: 25px;
}
.footer-copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid #1e293b;
    color: #64748b;
    font-size: 0.9rem;
}
.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; }
    .map-section { height: 550px; }
    .map-card { padding: 28px 24px; max-width: 90%; }
    .map-title { font-size: 1.3rem; }
    .footer-grid { grid-template-columns: 1fr; text-align: center; }
    .section-title-left::after { left: 50%; transform: translateX(-50%); }
    .section-title-left { text-align: center; }
}





 .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;
}
