.page-about {
    background-color: #F4F7FB; /* Custom Background */
    color: #1F2D3D; /* Custom Text Main */
    font-family: Arial, sans-serif;
}

/* Hero Section */
.page-about__hero-section {
    display: flex;
    flex-direction: column; /* Enforce image above text */
    align-items: center;
    text-align: center;
    padding: 10px 0 40px 0; /* Small top padding, larger bottom */
    background-color: #2F6BFF; /* Main Color for hero background */
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

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

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum height */
    filter: none; /* No filter */
}

.page-about__hero-content {
    position: relative; /* Not absolute, to flow below image */
    z-index: 1;
    max-width: 900px;
    padding: 0 20px;
}

.page-about__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    margin-bottom: 15px;
    max-width: 100%; /* Ensure H1 fits */
}

.page-about__hero-description {
    font-size: 1.1em;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #E0E0E0;
}

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

.page-about__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 200px; /* Ensure button size is substantial */
    text-align: center;
    font-size: 1em;
}

.page-about__btn--primary {
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    border: none;
}

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

.page-about__btn--secondary {
    background-color: transparent;
    color: #FFFFFF;
    border: 2px solid #6FA3FF; /* Auxiliary color for border */
}

.page-about__btn--secondary:hover {
    background-color: #6FA3FF; /* Auxiliary color on hover */
    transform: translateY(-2px);
}

/* General Section Styling */
.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-about__section-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    margin-top: 60px;
    line-height: 1.3;
}

/* Mission Section */
.page-about__mission-section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background */
}

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

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

.page-about__mission-text p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

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

.page-about__mission-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    min-width: 200px; /* Min size */
    min-height: 200px; /* Min size */
    filter: none; /* No filter */
}

/* Values Section */
.page-about__values-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Card BG */
}

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

.page-about__value-card {
    background-color: #F4F7FB; /* Background color for cards */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #D6E2FF; /* Border color */
}

.page-about__value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
}

.page-about__value-icon {
    width: 100%; /* Occupy card main area */
    max-width: 400px; /* Ensure not too wide */
    height: auto;
    margin: 0 auto 20px auto;
    object-fit: cover;
    min-width: 200px; /* Min size */
    min-height: 200px; /* Min size */
    border-radius: 5px;
    filter: none; /* No filter */
}

.page-about__value-title {
    font-size: 1.4em;
    font-weight: bold;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
}

.page-about__value-description {
    line-height: 1.7;
    color: #1F2D3D; /* Text Main */
}

/* Team Section */
.page-about__team-section {
    padding: 60px 0;
    background-color: #F4F7FB; /* Background */
}

.page-about__team-content {
    display: flex;
    gap: 40px;
    align-items: center;
    flex-wrap: wrap-reverse; /* Text above image on mobile */
}

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

.page-about__team-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    object-fit: cover;
    min-width: 200px; /* Min size */
    min-height: 200px; /* Min size */
    filter: none; /* No filter */
}

.page-about__team-text {
    flex: 1;
    min-width: 300px;
}

.page-about__team-text p {
    line-height: 1.8;
    margin-bottom: 20px;
    color: #1F2D3D; /* Text Main */
}

/* CTA Section */
.page-about__cta-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #2F6BFF 0%, #6FA3FF 100%); /* Main to Auxiliary gradient */
    text-align: center;
    color: #FFFFFF;
}

.page-about__cta-title {
    font-size: 2.5em;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-about__cta-description {
    font-size: 1.2em;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #E0E0E0;
}

.page-about__btn--cta {
    background-color: #FFFFFF; /* White button on blue gradient */
    color: #2F6BFF; /* Main color for text */
    padding: 15px 40px;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
    border: none;
}

.page-about__btn--cta:hover {
    background-color: #E0E0E0;
    color: #1F2D3D;
    transform: translateY(-3px);
}

/* Responsive Adjustments */
@media (max-width: 1024px) {
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__cta-title {
        font-size: 2.2em;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding-top: 10px; /* Ensure small padding, not header-offset */
        padding-bottom: 30px;
    }

    .page-about__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em); /* Clamp for H1 */
        margin-bottom: 10px;
    }

    .page-about__hero-description {
        font-size: 1em;
        margin-bottom: 25px;
    }

    .page-about__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-about__btn {
        width: 80%; /* Make buttons full width on mobile */
        max-width: 300px;
    }

    .page-about__mission-content,
    .page-about__team-content {
        flex-direction: column;
        gap: 30px;
    }

    .page-about__mission-image-wrapper,
    .page-about__team-image-wrapper {
        order: -1; /* Image appears above text on mobile */
    }

    .page-about__section-title {
        font-size: 1.8em;
        margin-bottom: 30px;
        margin-top: 40px;
    }

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

    .page-about__cta-section {
        padding: 50px 0;
    }

    .page-about__cta-title {
        font-size: 1.8em;
    }

    .page-about__cta-description {
        font-size: 1em;
        margin-bottom: 30px;
    }

    /* Mobile image constraint - apply to all images within .page-about */
    .page-about img {
        max-width: 100%;
        height: auto;
    }

    /* Ensure content area images are not smaller than 200px (display size) */
    .page-about__mission-image,
    .page-about__value-icon,
    .page-about__team-image {
        min-width: 200px; /* Ensure display size is not too small */
        min-height: 200px;
    }
}

@media (max-width: 480px) {
    .page-about__btn {
        min-width: unset;
        width: 90%;
    }
}