/* style/about-us.css */
.page-about-us {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333333; /* Default text color for light backgrounds */
    background-color: #FFFFFF; /* Default body background */
}

.page-about-us__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.page-about-us__section {
    padding: 60px 0;
    text-align: center;
}

.page-about-us__dark-section {
    background-color: #017439;
    color: #ffffff;
}

.page-about-us__light-bg {
    background-color: #ffffff;
    color: #333333;
}

.page-about-us__heading {
    font-size: 2.5em;
    margin-bottom: 30px;
    color: inherit; /* Inherit color from section */
}