.page-about {
    color: #333333; /* Dark text on light body background */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
}

.page-about__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    background-color: #ffffff; /* Explicitly set section background to white */
}

.page-about__hero-section {
    text-align: center;
    padding: 80px 20px 40px;
    background-color: #000000; /* Dark background for hero to make text pop */
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.page-about__hero-content {
    max-width: 900px;
    z-index: 1;
    position: relative;
}

.page-about__hero-title {
    font-size: 3.5em;
    color: #FCBC45; /* Login button color for emphasis */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #f0f0f0;
}

.page-about__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.page-about__button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    min-width: 200px;
    text-align: center;
}

.page-about__button--primary {
    background-color: #FCBC45;
    color: #000000;
    border: 2px solid #FCBC45;
}

.page-about__button--primary:hover {
    background-color: #e0a53b;
    border-color: #e0a53b;
}

.page-about__button--secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.page-about__button--secondary:hover {
    background-color: #ffffff;
    color: #000000;
}

.page-about__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    z-index: 0;
}

.page-about__section-title {
    font-size: 2.8em;
    color: #000000;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #FCBC45;
    border-radius: 2px;
}

.page-about__sub-title {
    font-size: 2em;
    color: #000000;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-about__paragraph {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #333333;
    text-align: justify;
}

.page-about__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.page-about__image {
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin: 20px auto;
    min-width: 200px;
    min-height: 200px;
}

.page-about__image--left {
    float: left;
    margin-right: 30px;
    margin-bottom: 20px;
    width: 45%;
}

.page-about__image--right {
    float: right;
    margin-left: 30px;
    margin-bottom: 20px;
    width: 45%;
}

.page-about__image--center {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 60%;
}

.page-about__image--full {
    width: 100%;
    margin-bottom: 30px;
}

.page-about__text-block {
    margin-bottom: 20px;
}

.page-about__content-wrapper::after {
    content: "";
    display: table;
    clear: both;
}

.page-about__values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__value-card {
    background-color: #f8f8f8;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.page-about__card-title {
    font-size: 1.5em;
    color: #000000;
    margin-bottom: 15px;
}

.page-about__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-about__feature-item {
    background-color: #f8f8f8;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.03);
    border-left: 5px solid #FCBC45;
}

.page-about__feature-title {
    font-size: 1.6em;
    color: #000000;
    margin-bottom: 10px;
}

.page-about__inline-link {
    color: #FCBC45;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-about__inline-link:hover {
    color: #e0a53b;
    text-decoration: underline;
}

.page-about__cta-block {
    text-align: center;
    margin-top: 50px;
    padding: 40px;
    background-color: #000000;
    border-radius: 12px;
    color: #ffffff;
}

.page-about__cta-block .page-about__button--primary {
    background-color: #FCBC45;
    color: #000000;
    border-color: #FCBC45;
}

.page-about__cta-block .page-about__button--primary:hover {
    background-color: #e0a53b;
    border-color: #e0a53b;
}

/* Responsive Design */
@media (min-width: 769px) {
    .page-about__story-section .page-about__content-wrapper,
    .page-about__mission-section .page-about__content-wrapper {
        display: block;
    }
}

@media (max-width: 1024px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }
    .page-about__hero-description {
        font-size: 1.1em;
    }
    .page-about__section-title {
        font-size: 2.2em;
    }
    .page-about__sub-title {
        font-size: 1.8em;
    }
    .page-about__paragraph {
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-about {
        padding-top: var(--header-offset, 80px);
    }
    .page-about__hero-section {
        padding: 60px 15px 30px;
        gap: 20px;
    }
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-description {
        font-size: 0.95em;
    }
    .page-about__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-about__button {
        width: 100%;
        min-width: unset;
    }
    .page-about__section {
        padding: 40px 15px;
    }
    .page-about__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-about__sub-title {
        font-size: 1.5em;
    }
    .page-about__image {
        float: none;
        margin-left: auto;
        margin-right: auto;
        width: 100%;
        max-width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
    .page-about__image--left,
    .page-about__image--right,
    .page-about__image--center {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
    }
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
    .page-about__cta-block {
        padding: 30px 20px;
    }
    .page-about__feature-item {
        padding: 20px;
    }
    .page-about__feature-title {
        font-size: 1.4em;
    }
}

/* Ensure no image filters are used */
.page-about img {
    filter: none !important;
}

/* Ensure content area images are not too small */
.page-about__image,
.page-about__values-grid .page-about__image {
    min-width: 200px;
    min-height: 200px;
}