.map .button {
    background-color: rgb(0, 94, 255);
    border: none;
    color: #fff;
    display: block;
    font-size: 16px;
    margin-top: auto;
    padding: 10px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
}


.map .button:hover {
    background-color: #fff;
    color: rgb(0, 94, 255);
}

.about-us {
    background-color: #f2f2f2;
    padding: 2rem;
}

.about-us h1 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.about-us p {
    margin-bottom: 1rem;
}

.map-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    grid-gap: 20px;
}

.map {
    display: flex;
    flex-direction: column;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.map h3 {
    margin-bottom: 10px;
}