/* style/about.css */

.page-about {
    background-color: #F4F7FB; /* Background color */
    color: #1F2D3D; /* Text Main */
    line-height: 1.6;
    font-family: Arial, sans-serif;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
}

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

/* Hero Section */
.page-about__hero-section {
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Consistent with container max-width */
    margin-bottom: 30px;
    overflow: hidden;
    border-radius: 8px;
}

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

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

.page-about__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
    font-weight: 700;
    margin-bottom: 20px;
    color: #000000; /* Custom Color_1776249996415 */
    line-height: 1.2;
}

.page-about__intro-text {
    font-size: 1.15rem;
    margin-bottom: 30px;
    color: #1F2D3D; /* Text Main */
}

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

.page-about__btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    min-width: 150px; /* Ensure button minimum width */
    text-align: center;
}

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

.page-about__btn--primary:hover {
    background: linear-gradient(180deg, #2F6BFF 0%, #4A8BFF 100%);
    transform: translateY(-2px);
}

.page-about__btn--secondary {
    background-color: #FFFFFF;
    color: #2F6BFF; /* Main color */
    border: 2px solid #2F6BFF; /* Main color */
}

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

/* Mission & Vision Section */
.page-about__mission-vision-section {
    padding: 40px 0;
    margin-bottom: 40px;
}

.page-about__mission-vision-section .page-about__container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-about__card {
    background-color: #FFFFFF; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-about__card-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2F6BFF; /* Main color */
}

.page-about__card-text {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
    margin-bottom: 20px;
    flex-grow: 1; /* Allow text to take available space */
}

.page-about__card-image {
    width: 100%;
    max-width: 400px; /* Max width for card image */
    height: auto;
    border-radius: 8px;
    margin-top: 15px;
    object-fit: cover;
    min-height: 200px; /* Ensure minimum size */
}

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

.page-about__section-title {
    font-size: clamp(1.8rem, 3.5vw, 3rem); /* Responsive font size */
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #000000; /* Custom Color_1776249996415 */
}

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

.page-about__value-item {
    background-color: #FFFFFF; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-about__value-icon {
    width: 200px; /* Display size for icon, consistent with HTML width */
    height: 200px; /* Display size for icon, consistent with HTML height */
    max-width: 100%; /* Ensure responsiveness */
    object-fit: contain; /* Keep aspect ratio without cropping */
    margin-bottom: 20px;
}

.page-about__value-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #2F6BFF; /* Main color */
}

.page-about__value-description {
    font-size: 1rem;
    color: #1F2D3D; /* Text Main */
}

/* Call to Action Section */
.page-about__cta-section {
    padding: 60px 20px;
    text-align: center;
    background-color: #6FA3FF; /* Auxiliary color */
    color: #FFFFFF;
    border-radius: 10px;
    margin-top: 40px;
    margin-bottom: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__cta-section .page-about__section-title {
    color: #FFFFFF;
    margin-bottom: 20px;
}

.page-about__cta-description {
    font-size: 1.15rem;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-about {
        padding-top: 10px; /* Small top padding */
    }
    .page-about__hero-section {
        padding: 40px 15px;
    }

    .page-about__main-title {
        font-size: clamp(2rem, 6vw, 2.5rem);
    }

    .page-about__intro-text {
        font-size: 1rem;
    }

    .page-about__cta-group {
        flex-direction: column;
        gap: 15px;
    }

    .page-about__btn {
        width: 100%;
        max-width: 250px;
        margin: 0 auto;
    }

    .page-about__mission-vision-section .page-about__container {
        grid-template-columns: 1fr;
    }

    .page-about__card-title {
        font-size: 1.5rem;
    }

    .page-about__section-title {
        font-size: clamp(1.6rem, 5vw, 2.2rem);
    }

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

    .page-about__cta-section {
        padding: 40px 15px;
    }

    /* Important: Ensure images don't overflow on mobile and meet min size */
    .page-about img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure min display size */
        min-height: 200px;
    }
}