.page-about {
    background-color: #100224; /* Dark background, similar to WOW88 style */
    color: #FFFFFF;
    font-family: 'Roboto', sans-serif; /* Assuming Roboto-like font */
    line-height: 1.6;
    padding-bottom: 50px; /* Ensure some space before footer */
}

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

.page-about__hero-section {
    position: relative;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 50px;
    background: linear-gradient(180deg, #017439 0%, #015c2d 100%); /* Green gradient background for hero */
}

.page-about__hero-image-wrapper {
    width: 100%;
    height: auto;
    max-height: 600px; /* Limit hero image height */
    overflow: hidden;
}

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

.page-about__hero-content {
    text-align: center;
    padding: 30px 20px;
    position: relative; /* Ensure content is above any potential background elements */
    z-index: 2;
}

.page-about__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    color: #FFFF00; /* Yellow for title highlight */
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__subtitle {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

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

.page-about__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: background-color 0.3s ease, transform 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.page-about__btn--register {
    background-color: #C30808; /* Red for Register */
    color: #FFFF00; /* Yellow for font */
    border: none;
}

.page-about__btn--register:hover {
    background-color: #a00606;
    transform: translateY(-2px);
}

.page-about__btn--login {
    background-color: #C30808; /* Red for Login */
    color: #FFFF00; /* Yellow for font */
    border: 1px solid #FFFF00;
}

.page-about__btn--login:hover {
    background-color: #a00606;
    transform: translateY(-2px);
}

.page-about__section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    background: linear-gradient(90deg, #ff9500, #ff5e3a); /* Orange-red gradient for titles */
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-fill-color: transparent;
}

.page-about__sub-section-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #FFFF00; /* Yellow for subtitles for better contrast */
    text-align: center;
}

.page-about__introduction-section,
.page-about__mission-vision-section,
.page-about__why-choose-section,
.page-about__commitment-section,
.page-about__cta-section {
    padding: 60px 0;
}

.page-about__introduction-section {
    background-color: #1a0630; /* Slightly lighter dark background */
}

.page-about__text {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #e0e0e0;
    text-align: justify;
}

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

.page-about__mission-vision-content {
    flex: 1;
}

.page-about__mission-vision-image-wrapper {
    flex: 1;
    text-align: center;
}

.page-about__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

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

.page-about__feature-card {
    background-color: #210c3f; /* Darker card background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__feature-icon {
    width: 100%; /* Make images take full width of card */
    max-width: 300px; /* Limit max width */
    height: auto;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border-radius: 8px;
    min-width: 200px; /* Min image size */
    min-height: 200px; /* Min image size */
}

.page-about__feature-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #FFFF00; /* Yellow for feature titles for better contrast */
    margin-bottom: 10px;
}

.page-about__feature-text {
    font-size: 1rem;
    color: #c0c0c0;
    margin-bottom: 20px;
}

.page-about__feature-link {
    display: inline-block;
    color: #FFFF00; /* Yellow for links */
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #FFFF00;
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-about__feature-link:hover {
    color: #ff9500; /* Orange-red on hover */
    border-color: #ff9500;
}

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

.page-about__commitment-item {
    background-color: #210c3f; /* Darker card background */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__commitment-title {
    font-size: 1.6rem;
    font-weight: 600;
    color: #FFFF00; /* Yellow for commitment titles */
    margin-bottom: 15px;
}

.page-about__link {
    color: #FFFF00; /* Yellow for links */
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid #FFFF00;
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.page-about__link:hover {
    color: #ff9500; /* Orange-red on hover */
    border-color: #ff9500;
}

.page-about__cta-section {
    background: linear-gradient(90deg, #017439, #015c2d); /* Green gradient for CTA */
    text-align: center;
    padding: 80px 0;
    margin-top: 60px;
}

.page-about__section-title--cta {
    color: #FFFFFF; /* White for CTA title */
    -webkit-text-fill-color: #FFFFFF;
    text-fill-color: #FFFFFF;
    background: none; /* Remove gradient for CTA title */
    margin-bottom: 20px;
}

.page-about__text--cta {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto 30px auto;
    color: #FFFFFF;
}

.page-about__btn--primary {
    background-color: #C30808; /* Red for primary CTA */
    color: #FFFF00; /* Yellow for font */
    border: none;
    padding: 15px 35px;
    font-size: 1.1rem;
    border-radius: 50px; /* Pill shape */
}

.page-about__btn--primary:hover {
    background-color: #a00606;
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-about__mission-vision-grid {
        flex-direction: column;
    }
    .page-about__mission-vision-image-wrapper {
        order: -1; /* Image above text on smaller screens */
        margin-bottom: 30px;
    }
    .page-about__section-title {
        font-size: 2rem;
    }
    .page-about__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }
}

@media (max-width: 768px) {
    .page-about__container {
        padding: 15px;
    }
    .page-about__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-about__btn {
        width: 80%;
        max-width: 300px;
    }
    .page-about__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }
    .page-about__subtitle {
        font-size: 1rem;
    }
    .page-about__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-about__sub-section-title {
        font-size: 1.5rem;
    }
    .page-about__text {
        font-size: 1rem;
    }
    .page-about__features-grid,
    .page-about__commitment-grid {
        grid-template-columns: 1fr;
    }
    .page-about__feature-icon,
    .page-about__image {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure min size */
        min-height: 200px; /* Ensure min size */
        width: 100%; /* Important for mobile responsiveness */
    }
    /* Mobile content area image constraint */
    .page-about img {
        max-width: 100%;
        height: auto;
    }
    .page-about__feature-card,
    .page-about__commitment-item {
        padding: 25px;
    }
    .page-about__btn--primary {
        width: 80%;
        max-width: 300px;
    }
}
/* Ensure content area images CSS size lower bound (200px) */
.page-about__introduction-section .page-about__image,
.page-about__mission-vision-section .page-about__image,
.page-about__why-choose-section .page-about__feature-icon,
.page-about__commitment-section .page-about__image,
.page-about__cta-section .page-about__image {
    min-width: 200px;
    min-height: 200px;
}