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

.page-about__hero-section {
    position: relative;
    background-color: #F4F7FB;
    padding-top: 10px; /* Small top padding, body handles header offset */
}

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

.page-about__hero-image {
    display: block;
    width: 100%;
    height: auto;
    min-width: 200px;
    min-height: 200px;
}

.page-about__hero-content {
    padding: 40px 20px;
    text-align: center;
    background-color: #F4F7FB;
}

.page-about__main-title {
    font-weight: 700;
    line-height: 1.2;
    color: #1F2D3D;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__description {
    font-size: 1.1em;
    color: #1F2D3D;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    background: linear-gradient(180deg, #4A8BFF 0%, #2F6BFF 100%);
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
    min-width: 200px;
    min-height: 50px;
}

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

.page-about__cta-button--secondary {
    background: #6FA3FF;
}

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

.page-about__introduction-section,
.page-about__mission-values-section,
.page-about__commitment-section,
.page-about__contact-cta-section {
    padding: 60px 0;
    background-color: #F4F7FB;
}

.page-about__section-title {
    font-size: 2.2em;
    font-weight: 700;
    color: #1F2D3D;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.3;
}

.page-about__sub-title {
    font-size: 1.6em;
    font-weight: 600;
    color: #2F6BFF;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-about__paragraph {
    font-size: 1em;
    color: #1F2D3D;
    line-height: 1.7;
    margin-bottom: 20px;
}

.page-about__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

.page-about__content-grid--reverse {
    flex-direction: row-reverse;
}

.page-about__text-content {
    flex: 1;
}

.page-about__image-wrapper {
    flex: 1;
    text-align: center;
}

.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    min-width: 200px;
    min-height: 200px;
}

.page-about__values-list {
    list-style: none;
    padding: 0;
    margin-top: 20px;
}

.page-about__values-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    font-size: 1em;
    color: #1F2D3D;
    line-height: 1.6;
}

.page-about__values-item::before {
    content: '✅';
    position: absolute;
    left: 0;
    top: 0;
    font-size: 1.2em;
}

.page-about__contact-cta-section {
    text-align: center;
    padding-bottom: 80px;
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-about__content-grid {
        flex-direction: column;
    }
    .page-about__content-grid--reverse {
        flex-direction: column;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__sub-title {
        font-size: 1.4em;
    }
}

@media (max-width: 768px) {
    .page-about__hero-content {
        padding: 30px 15px;
    }
    .page-about__main-title {
        font-size: 1.8em;
    }
    .page-about__description {
        font-size: 1em;
    }
    .page-about__cta-button {
        padding: 12px 25px;
    }
    .page-about__introduction-section,
    .page-about__mission-values-section,
    .page-about__commitment-section,
    .page-about__contact-cta-section {
        padding: 40px 0;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__sub-title {
        font-size: 1.2em;
    }
    .page-about__paragraph,
    .page-about__values-item {
        font-size: 0.95em;
    }
    .page-about__hero-image,
    .page-about__image {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px;
        min-height: 200px;
    }
    .page-about__container {
        padding: 15px;
    }
}