.page-about {
    padding-top: var(--header-offset, 120px); /* Account for fixed header on desktop and mobile */
    background-color: #FFFFFF;
    color: #333333; /* Dark text for light background */
}

.page-about__hero-section {
    position: relative;
    text-align: center;
    overflow: hidden;
    padding-bottom: 40px;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Darken image slightly for text readability */
}

.page-about__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 900px;
    width: 90%;
    color: #FFFFFF;
    z-index: 1;
    padding: 20px;
    background: rgba(0, 0, 0, 0.4); /* Semi-transparent dark overlay for text */
    border-radius: 10px;
}

.page-about__hero-title {
    font-size: 3em;
    margin-bottom: 15px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-about__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    line-height: 1.5;
    color: #f0f0f0;
}

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

.page-about__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease;
    font-size: 1.1em;
    border: none;
    cursor: pointer;
}

.page-about__btn--download {
    background-color: #FCBC45; /* Login color for primary action */
    color: #000000;
}

.page-about__btn--download:hover {
    background-color: #e0a53d;
}

.page-about__btn--register {
    background-color: #000000; /* Main color */
    color: #FFFFFF;
    border: 2px solid #FCBC45;
}

.page-about__btn--register:hover {
    background-color: #333333;
    border-color: #FFFFFF;
}

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

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

.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__mission-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-about__mission-content {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-about__text-block {
    flex: 1;
    font-size: 1.1em;
    line-height: 1.6;
    color: #333333;
}

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

.page-about__image {
    flex: 1;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Ensure min size */
    min-height: 200px; /* Ensure min size */
}

.page-about__values-section {
    padding: 60px 0;
}

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

.page-about__value-card {
    background-color: #FFFFFF;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #eee;
}

.page-about__value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.page-about__value-icon {
    width: 200px; /* Min size for content images */
    height: 150px; /* Min size for content images, adjusted for aspect ratio */
    object-fit: contain;
    margin-bottom: 20px;
    filter: none; /* Ensure no color filter */
}

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

.page-about__value-card p {
    font-size: 1em;
    line-height: 1.5;
    color: #555555;
}

.page-about__cta-section {
    background-color: #000000;
    color: #FFFFFF;
    padding: 80px 20px;
    text-align: center;
}

.page-about__cta-title {
    font-size: 3em;
    margin-bottom: 20px;
    color: #FFFFFF;
}

.page-about__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #f0f0f0;
}

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

.page-about__btn--explore {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #FFFFFF;
}

.page-about__btn--explore:hover {
    background-color: #f0f0f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-about__hero-title {
        font-size: 2.5em;
    }
    .page-about__hero-description {
        font-size: 1.1em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__mission-content {
        flex-direction: column;
        text-align: center;
    }
    .page-about__image {
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .page-about__hero-title {
        font-size: 2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-about__btn {
        width: 80%;
        max-width: 300px;
        margin: 0 auto;
    }
    .page-about__container {
        padding: 20px;
    }
    .page-about__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
    }
    .page-about__text-block {
        font-size: 1em;
    }
    .page-about__image {
        max-width: 100%;
        height: auto;
    }
    .page-about__value-card {
        padding: 25px;
    }
    .page-about__value-icon {
        width: 150px;
        height: 112px;
    }
    .page-about__cta-title {
        font-size: 2.2em;
    }
    .page-about__cta-description {
        font-size: 1em;
    }
    .page-about__cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    /* Ensure content images do not overflow */
    .page-about img {
        max-width: 100%;
        height: auto;
    }
    .page-about__value-icon { /* Specific override for smaller icons, but still > 200px for content */
        width: 200px;
        height: 150px;
        object-fit: contain;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 1.5em;
    }
    .page-about__hero-description {
        font-size: 0.9em;
    }
    .page-about__hero-content {
        padding: 15px;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
}