.hero {
    max-width: 1400px;
    margin: 0 auto;
    padding: 6rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    min-height: 90vh;
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 800;
}

.hero-content .highlight {
    color: var(--color-primary);
}

.hero-content p {
    font-size: 1.25rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .hero {
        grid-template-columns: 1fr;
        padding: 3rem 1.5rem;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons {
        flex-direction: column;
    }
}

a.service-card {
    text-decoration: none;
    color: inherit;
}
#map {
    width: 100%;
    height: 600px;
    background: #f0f0f0;
    border-radius: 6px;
    box-shadow: 6px 3px 9px 0 #000;
}

.info-panel {
    padding: 15px 20px;
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.city-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
}

.city-item {
    display: flex;
    align-items: center;
    gap: 5px;
}

.city-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ff4444;
}

.status {
    font-size: 14px;
    color: #666;
    font-weight: 500;
}

.status span {
    color: #667eea;
    font-weight: bold;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.3);
        opacity: 0.7;
    }
}

.animate-point {
    animation: pulse 0.5s ease-in-out;
}

@media (max-width: 768px) {
    .info-panel {
        flex-direction: column;
        align-items: flex-start;
    }

    .city-list {
        flex-wrap: wrap;
    }
}

.about-text ul {
    list-style-type: none;
}

.about-text li {
    display: -webkit-box;
}

.about-text li:before {
    content: "\f427";
    color: var(--color-primary-hover);
    background-color: var(--color-primary-hover);
}

.presentation {
    width: 100%;
    text-align: center;
    background-color: var(--color-primary);
    padding: 16px;
    border-radius: 9px;
    font-size: 24px;
}

.presentation a {
    color: var(--color-primary-hover);
    text-decoration: none;
}

.stat-back {
    width: 30%;
    height: 24px;
    background-color: #bae9bb;
    position: relative;
    left: 35%;
    top: 15px;
    box-shadow: 0 0 20px 9px #bae9bb;
}

.stat-text {
    position: relative;
    top: -33px;
}

body:before {
    background-image: url('/Images/index_logo.webp');
    background-repeat: no-repeat;
}