.page-about__hero-section {
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 40px;
    background-color: #F4F7FB; /* Background color from palette */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Constrain image width */
    margin-bottom: 30px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

.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;
    color: #1F2D3D; /* Text Main color */
    margin-bottom: 20px;
    /* font-size will be handled by default browser scaling/responsive design */
}

.page-about__description {
    font-size: 1.125rem;
    line-height: 1.6;
    color: #1F2D3D; /* Text Main color */
    margin-bottom: 30px;
}

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

.page-about__cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(47, 107, 255, 0.4);
}

.page-about__mission-section,
.page-about__values-section,
.page-about__team-section {
    padding: 60px 0;
    background-color: #FFFFFF; /* Card BG color */
    text-align: center;
}

.page-about__mission-section {
    background-color: #F4F7FB; /* Background color from palette */
}

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

.page-about__section-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #1F2D3D; /* Text Main color */
    margin-bottom: 40px;
}

.page-about__text-block {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #1F2D3D; /* Text Main color */
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-about__mission-image,
.page-about__team-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
    object-fit: cover;
}

.page-about__mission-image {
    max-width: 600px;
}

.page-about__values-list {
    list-style: none;
    padding: 0;
    margin: 0 auto 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
}

.page-about__value-item {
    background-color: #FFFFFF; /* Card BG color */
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
    border: 1px solid #D6E2FF; /* Border color */
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

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

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

.page-about__secondary-button,
.page-about__contact-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    background-color: #6FA3FF; /* Accent color */
    color: #FFFFFF;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s ease, transform 0.3s ease;
    margin-top: 20px;
}

.page-about__secondary-button:hover,
.page-about__contact-button:hover {
    background-color: #2F6BFF; /* Main color on hover */
    transform: translateY(-1px);
}

/* Ensure content area images are not too small */
.page-about__mission-section img,
.page-about__team-section img {
    min-width: 200px;
    min-height: 200px;
}

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

    .page-about__main-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem); /* Clamp for responsive H1 */
        margin-bottom: 15px;
    }

    .page-about__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }

    .page-about__cta-button {
        padding: 12px 25px;
        font-size: 0.9rem;
    }

    .page-about__section-title {
        font-size: 1.75rem;
        margin-bottom: 30px;
    }

    .page-about__text-block {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .page-about__values-list {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-about__value-title {
        font-size: 1.25rem;
    }

    .page-about__value-description {
        font-size: 0.9rem;
    }

    .page-about__secondary-button,
    .page-about__contact-button {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    /* Ensure content area images are responsive and don't overflow */
    .page-about__hero-image,
    .page-about__mission-image,
    .page-about__team-image {
        max-width: 100%;
        height: auto;
    }

    /* Content images CSS size lower bound */
    .page-about__hero-section img,
    .page-about__mission-section img,
    .page-about__team-section img {
        width: 100%; /* Ensure they take full width if needed */
        max-width: 100%;
        height: auto;
    }
}