.page-about {
    padding-top: 10px; /* Small top padding for non-header content, relies on body padding-top from shared.css */
    background-color: var(--background-color); /* Using background color from custom palette */
    color: var(--text-main-color); /* Using text main color from custom palette */
}

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

.page-about__hero-section {
    display: flex;
    flex-direction: column; /* Ensure image is above text */
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    background-color: var(--main-color); /* Main color as per palette */
    color: #FFFFFF; /* White text on dark background */
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 1920px;
    margin-bottom: 20px; /* Space between image and text */
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
}

.page-about__hero-content {
    max-width: 900px;
    padding: 0 20px;
}

.page-about__main-title {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 15px;
    color: #FFFFFF; /* White text */
    /* No fixed font-size, relying on default H1 size or responsiveness */
}

.page-about__description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #E0E0E0; /* Slightly off-white for description */
}

.page-about__cta-button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    background: var(--button-color); /* Using button gradient from custom palette */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-about__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-about__mission-vision-section {
    padding: 60px 0;
    background-color: var(--card-bg-color); /* Using card background color from custom palette */
}

.page-about__mission-vision-section .page-about__container {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-about__mission-content {
    flex: 1;
    min-width: 300px;
}

.page-about__mission-image-wrapper {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.page-about__mission-image {
    width: 100%;
    height: auto;
    max-width: 800px; /* Max width for content images */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-about__section-title {
    font-size: 2.2em;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-main-color);
    text-align: center;
}

.page-about__mission-content .page-about__section-title {
    text-align: left;
}

.page-about__text {
    font-size: 1.05em;
    line-height: 1.7;
    margin-bottom: 20px;
    color: var(--text-main-color);
}

.page-about__why-choose-us-section {
    padding: 60px 0;
    background-color: var(--background-color); /* Using background color from custom palette */
}

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

.page-about__feature-card {
    background-color: var(--card-bg-color);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid var(--border-color); /* Using border color from custom palette */
}

.page-about__feature-card:hover {
    transform: translateY(-5px);
}

.page-about__card-title {
    font-size: 1.4em;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text-main-color);
}

.page-about__card-text {
    font-size: 0.95em;
    line-height: 1.6;
    color: var(--text-main-color);
}

.page-about__feature-image-wrapper {
    text-align: center;
    margin-top: 40px;
}

.page-about__feature-image {
    width: 100%;
    height: auto;
    max-width: 1000px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

.page-about__commitment-section {
    padding: 60px 0;
    background-color: var(--main-color); /* Main color as per palette */
    color: #FFFFFF;
    text-align: center;
}

.page-about__commitment-section .page-about__section-title {
    color: #FFFFFF;
}

.page-about__commitment-list {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 800px;
}

.page-about__commitment-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    font-size: 1.1em;
    line-height: 1.6;
    text-align: left;
}

.page-about__commitment-icon {
    font-size: 1.5em;
    margin-right: 15px;
    color: var(--auxiliary-color); /* Using auxiliary color for icons */
    flex-shrink: 0;
}

.page-about__commitment-text strong {
    color: var(--auxiliary-color);
}

.page-about__cta-button--bottom {
    margin-top: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-about__container {
        padding: 15px;
    }

    .page-about__hero-section {
        padding-bottom: 30px;
    }

    .page-about__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em); /* Using clamp for H1 font size */
    }

    .page-about__description {
        font-size: 1em;
    }

    .page-about__mission-vision-section .page-about__container {
        flex-direction: column;
        text-align: center;
    }

    .page-about__mission-content {
        order: 2; /* Text below image on mobile */
    }

    .page-about__mission-image-wrapper {
        order: 1; /* Image above text on mobile */
        margin-bottom: 30px;
    }

    .page-about__section-title {
        font-size: 1.8em;
        text-align: center;
    }

    .page-about__mission-content .page-about__section-title {
        text-align: center;
    }

    .page-about__features-grid {
        grid-template-columns: 1fr;
    }

    /* Mobile image size constraint */
    .page-about__hero-image,
    .page-about__mission-image,
    .page-about__feature-image {
        max-width: 100%;
        height: auto;
    }

    /* Content area images should not be smaller than 200px.
       The max-width: 100%; height: auto; ensures they don't overflow,
       and their original width/height attributes prevent layout shifts.
       No explicit width/height < 200px here.
    */
    .page-about img {
        max-width: 100%;
        height: auto;
    }
}

/* Custom colors from palette */
:root {
    --main-color: #2F6BFF;
    --auxiliary-color: #6FA3FF;
    --button-color: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    --card-bg-color: #FFFFFF;
    --background-color: #F4F7FB;
    --text-main-color: #1F2D3D;
    --text-black-color: #000000; /* Custom Color_1776249996415 */
    --border-color: #D6E2FF;
    --glow-color: #A5C4FF;
}

/* Reverting page-about__main-title color for hero section back to white for design consistency */
.page-about__hero-content .page-about__main-title {
    color: #FFFFFF;
}
/* Ensure general text uses main text color */
.page-about__text, .page-about__card-text, .page-about__card-title, .page-about__section-title {
    color: var(--text-main-color);
}
/* Commitment section text is white */
.page-about__commitment-section .page-about__text,
.page-about__commitment-section .page-about__commitment-text,
.page-about__commitment-section .page-about__section-title {
    color: #FFFFFF;
}