.map-section {
    /* padding-top: 100px; */
    padding: 30px;
    text-align: center;
    background-color: #ffffff;
}

.map-section h2 {
    color: red;
    text-align: center;
    margin-top: 5px;
    padding: 10px;
    font-family: Rock Salt, cursive;
    font-weight: 400;
    font-style: normal;
}

.map-container {
    width: 100%;
    max-width: 1000px;
    height: 400px;
    margin: 0 auto;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Responsive Styling */
@media (max-width: 768px) {
    .map-section h2 {
        font-size: 24px;
    }

    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .map-section h2 {
        font-size: 20px;
    }

    .map-container {
        height: 250px;
    }
}