.page-about {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    box-sizing: border-box;
    color: #333333;
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    aspect-ratio: 17/5;
    object-fit: cover;
    display: block;
    max-width: 100%;
}

.page-about__content-container {
    padding: 20px;
}

.page-about__intro {
    text-align: center;
    padding: 20px 0;
}

.page-about__intro-title {
    color: #017439;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 10px;
}

.page-about__intro-text {
    font-size: 16px;
    color: #333;
    max-width: 900px;
    margin: 0 auto;
}

.page-about__story,
.page-about__journey,
.page-about__goals,
.page-about__why-section,
.page-about__values,
.page-about__future {
    margin-bottom: 30px;
    padding: 20px;
    border-radius: 8px;
    background: #f9f9f9;
}

.page-about__section-title {
    color: #017439;
    font-size: clamp(20px, 3vw, 28px);
    font-weight: bold;
    line-height: 1.3;
    margin-bottom: 15px;
    border-left: 4px solid;
    padding-left: 10px;
}

.page-about__text {
    font-size: 16px;
    color: #333;
    margin-bottom: 10px;
}

.page-about__mission-list,
.page-about__milestones,
.page-about__feature-grid,
.page-about__guide-figures {
    list-style: none;
    padding: 0;
    margin: 0 auto;
}

.page-about__mission-item {
    font-size: 16px;
    color: #333;
    padding: 5px 0;
    position: relative;
    padding-left: 20px;
}

.page-about__mission-item::before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #017439;
    position: absolute;
    left: 0;
    top: 12px;
}

.page-about__milestone {
    text-align: center;
    margin-bottom: 20px;
}

.page-about__milestone-title {
    font-size: 18px;
    color: #017439;
    margin-bottom: 5px;
}

.page-about__milestone-text {
    font-size: 15px;
    color: #333;
}

.page-about__lead-text {
    font-size: 18px;
    color: #555;
    font-style: italic;
    margin-bottom: 20px;
}

.page-about__feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    justify-items: center;
    margin: 0;
}

.page-about__feature-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    padding: 20px;
    text-align: center;
    max-width: 300px;
}

.page-about__feature-title {
    color: #017439;
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
}

.page-about__feature-text {
    font-size: 14px;
    color: #555;
}

.page-about__cta-section {
    background: linear-gradient(45deg, #017439, #018f46);
    color: #fff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    padding: 30px;
    text-align: center;
    border-radius: 8px;
}

.page-about__cta-title {
    font-size: clamp(22px, 3vw, 30px);
    margin-bottom: 10px;
}

.page-about__cta-text {
    font-size: 16px;
    margin-bottom: 20px;
}

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

.page-about__btn {
    display: inline-block;
    background-color: #FFFFFF;
    color: #C30808;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    transition: background-color 0.3s, ease, color 0.3s;
}

.page-about__btn:hover {
    background-color: #C30808;
    color: #FFFF00;
}

.page-about__logo-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 16px;
    justify-items: center;
    margin: 20px 0;
}

.page-about__logo-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    max-width: 280px;
}

.page-about__logo-image {
    width: 100%;
    aspect-ratio: 2/1;
    object-fit: contain;
}

.page-about__guide-section {
    margin-top: 20px;
    padding: 20px;
    background: #f0f0f0;
    border-radius: 8px;
}

.page-about__guide-title {
    text-align: center;
    color: #017439;
    font-weight: bold;
}

.page-about__guide-figures {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    max-width: 1000px;
    margin: 0 auto;
}

.page-about__guide-figure {
    flex: 1 1 300px;
    max-width: 400px;
    text-align: center;
}

.page-about__guide-image {
    width: 100%;
    aspect-ratio: 2/1;
    object-fit: cover;
}

.page-about__guide-caption {
    font-size: 14px;
    color: #555;
    margin-top: 8px;
}

.page-about__guide-link {
    color: #017439;
    font-weight: bold;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .page-about {
        font-size: 14px;
    }
    .page-about__hero-image {
        aspect-ratio: 2/1;
    }
    .page-about__content-container {
        padding: 10px;
    }
    .page-about__intro,
    .page-about__story,
    .page-about__journey,
    .page-about__goals,
    .page-about__why-section,
    .page-about__values,
    .page-about__future {
        padding: 15px;
    }
    .page-about__feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-about__logo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    .page-about__logo-card {
        max-width: 100%;
    }
    .page-about__guide-figures {
        flex-direction: column;
        align-items: center;
    }
    .page-about__guide-figure {
        max-width: 100%;
    }
    .page-about__feature-grid,
    .page-about__logo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .page-about__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-about img {
        max-width: 100% !important;
        height: auto !important;
    }
}