.location-info .info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
    padding: 15px;
    background: #f5fafd;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.location-info .info-item:hover {
    background: #e6f2fa;
    transform: translateX(5px);
}

.location-info .info-item i {
    color: #1f3847;
    font-size: 24px;
    margin-right: 15px;
    margin-top: 5px;
}

.info-content h4 {
    font-size: 1.1rem;
    color: #1f3847;
    margin-bottom: 8px;
}

.info-content p {
    margin-bottom: 0;
    line-height: 1.6;
}

.map-container {
    height: 100%;
    min-height: 450px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

#map {
    height: 450px;
    width: 100%;
    border-radius: 10px;
	z-index: -1 !important;
}

.transport-item {
    text-align: center; 
    padding: 20px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.transport-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.transport-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #1f3847, #326e92);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.transport-icon i {
    font-size: 28px;
    color: white;
}

.transport-item h4 {
    color: #1f3847;
    margin-bottom: 15px;
}

.transport-item p {
    color: #1f3847;
    font-size: 0.95rem;
    line-height: 1.6;
}
