/* Background Poster Section */
.bg-poster {
    position: relative;
    background: url(../img/main_aboutus.jpg) no-repeat center center;
    background-size: cover;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-poster .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.bg-poster h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    z-index: 1;
}

/* About Us Section */
#about {
    padding: 80px 0;
}

#about .text-container {
    margin-bottom: 30px;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
}

#about h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

#about p {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #555;
}

/* Image Container */
.image-container {
    text-align: center;
}

.image-container img {
    max-width: 100%;
    height: auto;
    max-height: 400px; /* Limit the height to ensure images don't get too tall */
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover; /* Ensures the image covers the container without distortion */
}

/* Map Container */
.map-container {
    margin-top: 20px;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Social Icons */
.social-icons {
    margin-top: 10px;
}

.social-icon {
    color: #333;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.social-icon:hover {
    color: #007bff; /* Adjust color for hover effect */
}
