section.about-banner {
    position: relative;
    width: 100%;
    height: 300px; /* Adjust height as needed */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
}

section.about-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}

.banner-text {
    z-index: 1;
    color: white;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
}

.banner-text .escape {
    font-family: var(--font_0);
    font-size: 50px;
    font-weight: bold;
}

.banner-text h2 {
    font-size: 30px;
    font-weight: bold;
}


.welcome-section {
    text-align: center;
    padding:0px 40px;
}

.welcome-section h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 20px;
}

.welcome-section p {
    font-size: 18px;
    color: rgb(var(--color_15));
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}


.skynile-location {
    text-align: center;
    padding: 0px 40px;
}

.skynile-location h1 {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}

.skynile-location .address {
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 30px;
}

.skynile-location .main-text {
    font-size: 18px;
    color: rgb(var(--color_15));
    max-width: 800px;
    margin: 20px auto;
    line-height: 1.6;
}
.map-section {
    
    justify-content: center;
    align-items: center;
    
    max-width: 1600px; /* Increase width */
    margin: 0 auto; /* Center the content */
}

.map-section iframe {
    width: 100%;
    max-width: 1600px; /* Increase map width */
    height: 500px; /* Slightly increase height */
    border: 0;
}