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

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

.page-about-us__section-title {
    font-size: 2.5em;
    color: #26A9E0; /* Brand primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-about-us__subsection-title {
    font-size: 1.8em;
    color: #26A9E0; /* Brand primary color for subtitles */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-about-us__text-block {
    font-size: 1.1em;
    margin-bottom: 15px;
    color: #333333;
}

.page-about-us__list {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 15px;
    color: #333333;
}

.page-about-us__list-item {
    margin-bottom: 8px;
    font-size: 1.1em;
}

/* Hero Section */
.page-about-us__hero-section {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 100px 20px;
    padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
    min-height: 600px;
    overflow: hidden;
    background-color: #26A9E0; /* Dark background */
    color: #FFFFFF; /* Light text */
}

.page-about-us__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.3; /* Subtle overlay */
    filter: none !important; /* No filter to change color */
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-about-us__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
}

.page-about-us__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    color: #FFFFFF;
    font-weight: bold;
}

.page-about-us__hero-description {
    font-size: 1.4em;
    margin-bottom: 30px;
    color: #FFFFFF;
}

.page-about-us__btn-primary,
.page-about-us__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    margin: 10px;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
}

.page-about-us__btn-primary {
    background-color: #EA7C07; /* Login color for primary action */
    color: #FFFFFF;
    border: 2px solid #EA7C07;
}

.page-about-us__btn-primary:hover {
    background-color: #d16b00;
    border-color: #d16b00;
}

.page-about-us__btn-secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}

.page-about-us__btn-secondary:hover {
    background-color: #FFFFFF;
    color: #26A9E0;
}

/* Story Section */
.page-about-us__story-section {
    padding: 80px 0;
    background-color: #FFFFFF; /* Light background */
    color: #333333; /* Dark text */
}