/* ===============================
   About Us Page Styles
   Namespace: .about-*
=============================== */

.about-us-page h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.about-us-page p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    text-align: justify;
}

.about-us-page img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    object-fit: cover;
}

/* Add red separator line between sections */
.about-us-page .about-section {
    border-bottom: 3px solid red;
    padding-bottom: 40px;
    margin-bottom: 40px;
}

/* Remove last section's border */
.about-us-page .about-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Responsive: stack sections vertically on small screens */
@media (max-width: 768px) {
    .about-us-page .about-section {
        flex-direction: column !important;
        text-align: center;
    }

    .about-us-page .about-section.flex-lg-row-reverse {
        flex-direction: column !important;
    }

    .about-us-page h2 {
        font-size: 1.5rem;
    }

    .about-us-page p {
        font-size: 0.95rem;
    }
}
