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

/* Hero Section */
.page-about__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding */
    margin-bottom: 40px;
    color: #FFFFFF; /* Text on hero image */
    text-align: center;
}

.page-about__hero-image-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

.page-about__hero-image {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
    min-height: 300px; /* Ensure minimum height */
    max-height: 600px; /* Max height for desktop */
}

.page-about__hero-content {
    background-color: #2F6BFF; /* Main color */
    padding: 20px;
    border-radius: 0 0 10px 10px;
    margin-top: -10px; /* Slightly overlap with the image for visual flow */
    position: relative;
    z-index: 1;
}

.page-about__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #FFFFFF;
    max-width: 900px;
    margin: 0 auto 10px auto;
}

.page-about__description {
    font-size: 1.1em;
    line-height: 1.6;
    color: #FFFFFF;
    max-width: 800px;
    margin: 0 auto;
}

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

/* Section Titles */
.page-about__section-title {
    font-size: 2.2em;
    font-weight: bold;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    margin-bottom: 30px;
    padding-top: 20px;
}

/* Intro Section */
.page-about__intro-section {
    background-color: #FFFFFF; /* Card BG */
    padding: 40px 0;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.page-about__content-wrapper {
    display: flex;
    align-items: center;
    gap: 30px;
}

.page-about__text-content {
    flex: 1;
    line-height: 1.8;
}

.page-about__text-content p {
    margin-bottom: 15px;
}

.page-about__image-container {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    object-fit: cover;
    min-width: 200px; /* Minimum size */
    min-height: 200px; /* Minimum size */
}

/* Values Section */
.page-about__values-section {
    padding: 40px 0;
    margin-bottom: 40px;
}

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

.page-about__value-card {
    background-color: #FFFFFF; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    text-align: center;
    border: 1px solid #D6E2FF; /* Border */
}

.page-about__card-title {
    font-size: 1.4em;
    color: #2F6BFF; /* Main color */
    margin-bottom: 15px;
}

/* Commitment Section */
.page-about__commitment-section {
    background-color: #FFFFFF; /* Card BG */
    padding: 40px 0;
    margin-bottom: 40px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* CTA Section */
.page-about__cta-section {
    padding: 50px 0;
    text-align: center;
    background-color: #2F6BFF; /* Main color */
    color: #FFFFFF;
    border-radius: 10px;
    margin-bottom: 40px;
}

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

.page-about__cta-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Buttons */
.page-about__button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    border: none;
    cursor: pointer;
}

.page-about__button:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%); /* Slightly darker/lighter on hover */
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-about__hero-content {
        padding: 15px;
    }
    .page-about__main-title {
        font-size: 2em;
    }
    .page-about__description {
        font-size: 1em;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        margin-bottom: 30px;
    }
    .page-about__hero-content {
        padding: 10px;
    }
    .page-about__main-title {
        font-size: clamp(1.8em, 5vw, 2.5em); /* Using clamp for H1 */
    }
    .page-about__description {
        font-size: 0.9em;
    }
    .page-about__section-title {
        font-size: 1.6em;
    }
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
    .page-about__container {
        padding: 15px;
    }
    .page-about__intro-section,
    .page-about__values-section,
    .page-about__commitment-section,
    .page-about__cta-section {
        margin-bottom: 30px;
        padding: 30px 0;
    }
    /* CRITICAL: Mobile image overflow fix */
    .page-about__intro-section img,
    .page-about__commitment-section img {
        max-width: 100%;
        height: auto;
    }
    /* Ensure content area images are at least 200px wide for mobile if they are not 100% width */
    .page-about__image {
        min-width: 200px;
        min-height: 200px;
    }
    /* Ensure any image within .page-about is handled */
    .page-about img {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-about__main-title {
        font-size: clamp(1.5em, 6vw, 2em);
    }
    .page-about__section-title {
        font-size: 1.4em;
    }
    .page-about__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }
}