.page-about {
    color: #333333; /* Dark text for light body background */
}

.page-about__hero-section {
    padding-top: var(--header-offset, 120px); /* Ensure space for fixed header */
    background-color: #000000; /* Dark background for hero */
    color: #FFFFFF;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-bottom: 80px;
}

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

.page-about__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.page-about__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-about__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FCBC45; /* Golden accent for title */
}

.page-about__hero-description {
    font-size: 1.3em;
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.page-about__button--register:hover {
    background-color: #FFFFFF;
    color: #000000;
    transform: translateY(-3px);
}

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

.page-about__button--login:hover {
    background-color: #FCBC45;
    color: #000000;
    transform: translateY(-3px);
}

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

.page-about__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 50px;
    color: #000000;
    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__mission-vision-section {
    background-color: #f8f8f8;
    padding: 80px 0;
}

.page-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.page-about__card {
    background-color: #FFFFFF;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-about__card:hover {
    transform: translateY(-10px);
}

.page-about__card-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

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

.page-about__card-text {
    font-size: 1.1em;
    line-height: 1.7;
    color: #555555;
}

.page-about__story-section {
    padding: 80px 0;
    background-color: #FFFFFF;
}

.page-about__story-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
}

.page-about__story-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.page-about__story-text {
    font-size: 1.1em;
    line-height: 1.8;
    color: #444444;
    max-width: 900px;
    text-align: justify;
}

.page-about__values-section {
    background-color: #000000;
    padding: 80px 0;
    color: #FFFFFF;
}

.page-about__values-section .page-about__section-title {
    color: #FCBC45;
}

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

.page-about__value-item {
    background-color: rgba(255, 255, 255, 0.08); /* Slightly transparent white on dark background */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    transition: background-color 0.3s ease;
}

.page-about__value-item:hover {
    background-color: rgba(255, 255, 255, 0.15);
}

.page-about__value-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

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

.page-about__value-description {
    font-size: 1em;
    line-height: 1.6;
    color: #CCCCCC;
}

.page-about__cta-section {
    background: linear-gradient(135deg, #000000, #333333);
    padding: 80px 20px;
    text-align: center;
    color: #FFFFFF;
}

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

.page-about__cta-text {
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
    line-height: 1.6;
}

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

.page-about__button--primary:hover {
    background-color: #FFFFFF;
    color: #000000;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-about__hero-title {
        font-size: 3em;
    }
    .page-about__hero-description {
        font-size: 1.2em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__grid {
        grid-template-columns: 1fr;
    }
    .page-about__values-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-about__hero-title {
        font-size: 2.5em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-about__button {
        width: 80%;
        margin: 0 auto;
    }
    .page-about__card-icon, .page-about__value-icon {
        width: 150px;
        height: 150px;
    }
    .page-about__story-image {
        max-width: 100%;
    }
    .page-about__story-text {
        text-align: left;
    }
    .page-about__cta-title {
        font-size: 2em;
    }
    /* Mobile content area image constraint */
    .page-about img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 2em;
    }
    .page-about__hero-description {
        font-size: 0.9em;
    }
    .page-about__button {
        width: 90%;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__card-title {
        font-size: 1.5em;
    }
    .page-about__value-title {
        font-size: 1.4em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
}