/* Main Styling */
h1 {
    text-align: center;
    font-size: 2rem;
    color: #2ecc71;
    margin-bottom: 2rem;
}

.map-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin: 2rem auto;
    padding: 1rem;
    max-width: 800px;
    border: 2px solid #2ecc71;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);

    transition: box-shadow 0.25s;
}

.map-container:hover{
    box-shadow: 0 8px 16px #27ae60;
}

.map-container iframe {
    width: 100%;
    max-width: 800px;
    height: 450px;
    border: none;
    border-radius: 10px;
}

.map-container p {
    margin-top: 1rem;
    font-size: 1rem;
    color: #333;
    text-align: center;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 300px;
    }

    .map-container p {
        font-size: 0.9rem;
    }
}