.page-about {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    color: #333333; /* Text Main */
    background-color: #F5F7FA; /* Background */
}

.page-about__section {
    padding: 40px 20px;
    margin-bottom: 20px;
}

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

/* Hero Section */
.page-about__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding */
    margin-bottom: 20px;
    background-color: #2d0000; /* Dark red for contrast */
    color: #FFFFFF;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
}

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

.page-about__hero-image {
    width: 100%;
    height: auto; /* Maintain aspect ratio */
    display: block;
    aspect-ratio: 16 / 9; /* For 1920x1080 image */
    object-fit: cover;
    object-position: center;
    filter: none; /* No color filters */
}

.page-about__hero-content {
    padding: 30px 15px 50px;
    max-width: 900px;
    position: relative; /* Ensure content is in normal flow */
    z-index: 1; /* Keep content above any potential background elements */
}

.page-about__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #FFFFFF;
    font-size: clamp(2rem, 5vw, 3rem); /* H1 font size with clamp */
}

.page-about__hero-description {
    font-size: 1.15rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #FFFFFF; 
}

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

.page-about__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    cursor: pointer;
    border: none;
}

.page-about__button--primary {
    background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%); /* Button gradient */
    color: #333333; /* Dark text for contrast */
}

.page-about__button--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

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

.page-about__button--secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

/* General Section Styling */
.page-about__section-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #333333; /* Text Main for contrast */
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 10px;
}

.page-about__section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: #FF5A4F; /* Auxiliary color */
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-about__text {
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 15px;
    color: #333333; /* Text Main */
    text-align: justify;
}

.page-about__sub-title {
    font-size: 1.4rem;
    font-weight: 600;
    color: #333333; /* Text Main for contrast */
    margin-top: 25px;
    margin-bottom: 10px;
}

.page-about__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-about__list-item {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
    color: #333333; /* Text Main */
}

.page-about__list-item::before {
    content: '✓'; /* Checkmark for list items */
    position: absolute;
    left: 0;
    color: #E53935; /* Main color for icon */
    font-weight: bold;
    font-size: 1.2em;
    line-height: 1;
}

.page-about__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    object-fit: cover;
    filter: none; /* No color filters */
    min-width: 200px; /* Min image size for content area */
    min-height: 200px; /* Min image size for content area */
}

/* Mission & Vision Section */
.page-about__mission-vision-section {
    background-color: #FFFFFF; /* Card BG */
}

.page-about__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

@media (min-width: 768px) {
    .page-about__grid {
        grid-template-columns: 1fr 1fr;
    }
    .page-about__grid-item:first-child {
        order: 0; /* Image first on desktop */
    }
    .page-about__grid-item:last-child {
        order: 1; /* Text second on desktop */
    }
}

/* Why Choose Us Section */
.page-about__why-choose-us-section {
    background-color: #F5F7FA; /* Background */
}

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

@media (min-width: 600px) {
    .page-about__features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .page-about__features-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.page-about__card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #E0E0E0; /* Border color */
}

.page-about__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.page-about__card-title {
    font-size: 1.3rem;
    font-weight: 600;
    color: #333333; /* Text Main for contrast */
    margin-bottom: 15px;
    text-align: center;
}

/* CTA Section */
.page-about__cta-section {
    background-color: #E53935; /* Main color */
    color: #FFFFFF;
    text-align: center;
}

.page-about__cta-content {
    padding: 50px 30px;
    border-radius: 15px;
    background-color: rgba(0, 0, 0, 0.2); /* Slightly darker overlay for contrast */
}

.page-about__cta-title {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    margin-bottom: 20px;
    color: #FFFFFF;
    line-height: 1.3;
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-about__section {
        padding: 30px 15px;
    }
    .page-about__hero-content {
        padding: 20px 15px 30px;
    }
    .page-about__main-title {
        font-size: clamp(1.5rem, 7vw, 2.5rem);
    }
    .page-about__hero-description {
        font-size: 1rem;
    }
    .page-about__button {
        width: 100%;
        max-width: 250px;
        padding: 10px 20px;
    }
    .page-about__hero-actions {
        flex-direction: column;
        align-items: center;
    }
    .page-about__section-title {
        font-size: clamp(1.5rem, 6vw, 2rem);
    }
    .page-about__text {
        text-align: left; /* Adjust for mobile readability */
    }
    .page-about__list-item {
        font-size: 0.95rem;
    }
    .page-about__card-title {
        font-size: 1.2rem;
    }
    /* Ensure content area images are responsive and not too small */
    .page-about img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Enforce minimum size even on mobile */
        min-height: 200px;
    }
}

@media (max-width: 549px) {
    .page-about__cta-content {
        padding: 30px 20px;
    }
    .page-about__cta-actions {
        flex-direction: column;
    }
}