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

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

/* Hero Section */
.page-about__hero-section {
    display: flex;
    flex-direction: column; /* Image first, then content */
    align-items: center;
    text-align: center;
    padding: 10px 0 60px 0; /* Small top padding, larger bottom */
    background-color: #F4F7FB;
}

.page-about__hero-image {
    width: 100%;
    max-width: 1200px; /* Adjust based on container width */
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

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

.page-about__description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: #1F2D3D; /* Text Main */
    margin-bottom: 40px;
    max-width: 800px;
}

.page-about__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%); /* Button color */
    color: #FFFFFF;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: background 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 15px rgba(47, 107, 255, 0.4);
}

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

.page-about__cta-button--secondary {
    background: #6FA3FF; /* Auxiliary color for secondary button if needed, but the gradient is primary */
    box-shadow: 0 4px 15px rgba(111, 163, 255, 0.4);
}

.page-about__cta-button--secondary:hover {
    background: #2F6BFF;
}

/* General Section Styling */
.page-about__mission-section,
.page-about__why-choose-us-section,
.page-about__commitment-section {
    padding: 60px 0;
    margin-bottom: 20px;
}

.page-about__mission-section {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

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

.page-about__text {
    font-size: 1.1rem;
    color: #1F2D3D; /* Text Main */
    text-align: center;
    max-width: 900px;
    margin: 0 auto 20px auto;
}

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

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

.page-about__feature-card {
    background-color: #FFFFFF; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.page-about__feature-icon {
    width: 100%; /* Make image take full card width */
    max-width: 400px; /* Example, adjust as needed */
    height: auto;
    object-fit: cover;
    margin-bottom: 20px;
    border-radius: 8px;
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-about__feature-title {
    font-size: 1.5rem;
    color: #000000; /* Custom Color_1776249996415 */
    margin-bottom: 10px;
    font-weight: bold;
}

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

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

.page-about__commitment-content {
    display: flex;
    flex-direction: column; /* Default to column for mobile first */
    align-items: center;
    gap: 40px;
    margin-top: 40px;
}

.page-about__commitment-image {
    width: 100%;
    max-width: 500px; /* Example, adjust as needed */
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    min-width: 200px; /* Enforce min image size */
    min-height: 200px; /* Enforce min image size */
}

.page-about__commitment-text {
    text-align: center;
    max-width: 600px;
}

/* Responsive adjustments */
@media (min-width: 768px) {
    .page-about__hero-content {
        max-width: 1000px;
    }

    .page-about__commitment-content {
        flex-direction: row; /* Row for larger screens */
        text-align: left;
    }

    .page-about__commitment-text {
        text-align: left;
        max-width: none; /* Remove max-width for flex item */
    }

    .page-about__text {
        text-align: left;
        margin-left: 0;
        margin-right: 0;
    }
}

@media (max-width: 768px) {
    .page-about__hero-image,
    .page-about__feature-icon,
    .page-about__commitment-image {
        max-width: 100%;
        height: auto;
        /* Enforce image sizing for mobile */
        min-width: 200px;
        min-height: 200px;
    }

    .page-about__container {
        padding: 15px;
    }

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

    .page-about__description {
        font-size: clamp(0.9rem, 4vw, 1.1rem);
    }

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

    .page-about__text {
        font-size: 1rem;
    }

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