body {
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
    background-color: #f0f2f5;
}
.navbar {
    background: linear-gradient(135deg, #1a237e 0%, #283593 100%) !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.navbar-nav .nav-link {
    display: flex;
    align-items: center;
    color: #ffffff !important;
    font-weight: 500;
    padding: 1rem 1.5rem;
    transition: all 0.3s ease;
}
.navbar-nav .nav-link:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-2px);
}
.navbar-nav .nav-link svg {
    margin-right: 10px;
    width: 22px;
    height: 22px;
    fill: #ffffff;
    transition: transform 0.3s;
}
.navbar-nav .nav-link:hover svg {
    transform: scale(1.1) rotate(5deg);
}
.container {
    margin-top: 40px;
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
#map {
    position: relative;
    height: 500px;
    width: 100%;
    margin-top: 25px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    display: none;
}
.animated-title {
    text-align: center;
    font-size: 2.8rem;
    margin-bottom: 35px;
    color: #1a237e;
    font-weight: 700;
    animation: fadeIn 2s ease-in-out;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}
.form-label {
    color: #1a237e;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
}
.form-select {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px;
    font-size: 1rem;
    transition: all 0.3s;
    background-color: #fff;
}
.form-select:focus {
    border-color: #1a237e;
    box-shadow: 0 0 0 0.25rem rgba(26,35,126,0.15);
}
.intro-text {
    background-color: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border-left: 5px solid #1a237e;
    line-height: 1.6;
}
.intro-text p {
    margin-bottom: 15px;
    color: #2c3e50;
}
.index-selection {
    display: none;
    animation: slideIn 0.5s ease-out;
}
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes slideIn {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}
.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.selection-row {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 12px;
    margin: 25px 0;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
@media (max-width: 768px) {
    .animated-title {
        font-size: 2rem;
    }
    #map {
        height: 350px;
    }
    .container {
        padding: 1.5rem;
        margin-top: 20px;
    }
    .selection-row {
        padding: 15px;
    }
}
.map-controls {
    position: absolute;
    top: 80px;
    left: 10px;
    z-index: 1000;
    background: white;
    padding: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    min-width: 250px;
}
.map-controls .form-label {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.map-controls .form-check {
    margin-bottom: 8px;
}
.map-controls hr {
    margin: 15px 0;
    opacity: 0.2;
}
.index-info-box {
    display: none;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    margin: 20px 0;
    border-left: 5px solid #1a237e;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
    animation: fadeIn 0.5s ease-out;
}

.index-info-box h4 {
    color: #1a237e;
    margin-bottom: 15px;
    font-size: 1.2rem;
    font-weight: 600;
}

.index-info-box p {
    color: #2c3e50;
    margin-bottom: 10px;
    line-height: 1.6;
}

.index-info-box .advantages {
    margin-top: 15px;
    padding-left: 20px;
}

.index-info-box .advantages li {
    margin-bottom: 8px;
    color: #2c3e50;
}