/* Join Us Section */
#join-us {
    background-color: var(--light-color); /* Light background for contrast */
    text-align: center;
    padding: 60px 20px;
}

.join-us-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 700px;
    margin: 0 auto;
}

.join-us-content p {
    font-size: 1.3rem;
    margin-bottom: 10px;
    line-height: 1.5;
    color: var(--dark-color);
}

.map-link-button {
    margin-top: 20px;
    margin-bottom: 40px;
}

/* Container for the embedded map to make it responsive */
.map-embed-container {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: #f0f0f0;
    border-radius: 10px;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

.map-embed-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 10px;
}