/* Body styles */
body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;    
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f9f9ff; /* Match other pages' background */
}

/* Map section */
#map-section {
    text-align: center;
}

#map-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #222;
}

.map-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

#map {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94); /* Smoother animation */
}

#zoom-btn {
    margin-top: 1.5rem;
    padding: 10px 20px;
    background-color: #f86e3d;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

#zoom-btn:hover {
    background-color: #e45a25;
    transform: translateY(-2px);
}

#distance {
    margin-top: 1rem;
    font-style: italic;
    color: #555;
}

/* Responsive design */
@media (max-width: 768px) {
    .content-wrapper {
        padding: 1.5rem;
        margin: 1rem auto;
    }
}
