/* ABOUT SECTION */
.about-section {
    position: relative;
    width: 100%;
    background-color: #bfc4d4cb; /* same as header */
    padding: 10px 0; /* medium spacing */
    height: 75vh;
    scroll-snap-align: start;
    
    
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px; /* left/right breathing space */
}

.about-title {
    font-family: 'BPG Arial', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #0A1025; /* gold */
    margin-bottom: 120px;
    text-align: left;
}

.about-text {
    font-family: 'BPG Arial', sans-serif;
    font-size: 22px;
    line-height: 1.7;
    color: #0A1025; /* white text */
    max-width: 900px; /* comfortable reading */
}
.section-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 5px;            /* Slightly thicker for premium feel */
    background-color: #C8A046;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
    
}

.gd-footer {
    scroll-snap-align: end;
}


@media (max-width: 1024px) {
    .about-container {
        max-width: 90%;
        margin: 0 auto;
        text-align: center;
        padding: 40px 10px;
    }

    .about-title {
        text-align: center !important;
        margin-bottom: 25px;
        font-size: 32px;
    }

    .about-text {
        text-align: center !important;
        font-size: 18px;
        line-height: 1.7;
        margin: 0 auto;
    }
}

@media (max-width: 767px) {
    .about-section {
        height: auto;
        
    }

}
