.page-about {
    color: #333333; /* Dark text for default light body background */
}

.page-about__hero-section {
    padding-top: var(--header-offset, 120px); /* Fixed header offset for desktop */
    background-color: #f8f8f8;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 60px;
}

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

.page-about__hero-title {
    font-size: 3.2em;
    color: #1A202C;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-about__hero-description {
    font-size: 1.2em;
    color: #555555;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.page-about__btn {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
}

.page-about__btn--primary {
    background-color: #FFD700;
    color: #1A202C;
    border-color: #FFD700;
}

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

.page-about__btn--secondary {
    background-color: #1A202C;
    color: #FFD700;
    border-color: #1A202C;
}

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

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 1200px;
    margin-top: 40px;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.page-about__story-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.page-about__section-title {
    font-size: 2.5em;
    color: #1A202C;
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-about__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #FFD700;
    margin: 15px auto 0;
    border-radius: 2px;
}

.page-about__story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-about__story-content {
    font-size: 1.1em;
    line-height: 1.8;
    color: #444444;
}

.page-about__text {
    margin-bottom: 15px;
}

.page-about__story-image-wrapper {
    text-align: center;
}

.page-about__story-image {
    width: 100%;
    height: auto;
    max-width: 800px;
    border-radius: 8px;
}

.page-about__mission-vision-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 20px;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
}

.page-about__mission-card,
.page-about__vision-card {
    background-color: #1A202C;
    color: #f0f0f0;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    flex: 1;
    min-width: 300px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-about__card-title {
    font-size: 1.8em;
    color: #FFD700;
    margin-bottom: 15px;
}

.page-about__card-icon {
    width: 100%;
    height: auto;
    max-width: 400px;
    margin-top: 20px;
    border-radius: 5px;
}

.page-about__values-section {
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px 20px;
    background-color: #f8f8f8;
    border-radius: 10px;
}

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

.page-about__value-item {
    background-color: #ffffff;
    padding: 30px 20px;
    border-radius: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-about__value-icon {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 20px;
}

.page-about__value-title {
    font-size: 1.5em;
    color: #1A202C;
    margin-bottom: 10px;
}

.page-about__cta-section {
    background-color: #1A202C;
    color: #f0f0f0;
    padding: 60px 20px;
    text-align: center;
    margin-top: 60px;
}

.page-about__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-about__cta-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.page-about__btn--cta {
    background-color: #FFD700;
    color: #1A202C;
    border-color: #FFD700;
    margin-right: 20px;
}

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

.page-about__btn--outline {
    background-color: transparent;
    color: #FFD700;
    border-color: #FFD700;
}

.page-about__btn--outline:hover {
    background-color: #FFD700;
    color: #1A202C;
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }
    .page-about__section-title {
        font-size: 2.2em;
    }
    .page-about__cta-title {
        font-size: 2.4em;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding-top: var(--header-offset, 120px);
        padding: 40px 15px;
    }
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-about__btn {
        width: 80%;
        max-width: 300px;
        padding: 12px 20px;
    }
    .page-about__story-grid {
        grid-template-columns: 1fr;
    }
    .page-about__mission-vision-section {
        flex-direction: column;
        gap: 20px;
    }
    .page-about__mission-card, .page-about__vision-card {
        min-width: unset;
    }
    .page-about__values-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__cta-title {
        font-size: 2em;
    }
    .page-about__cta-description {
        font-size: 1em;
    }
    .page-about__btn--cta {
        margin-right: 0;
        margin-bottom: 15px;
    }
    .page-about__story-image, .page-about__card-icon, .page-about__value-icon, .page-about__hero-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 1.8em;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__btn {
        width: 90%;
    }
}

/* Ensure all images within .page-about are responsive and not smaller than 200px display size on desktop */
.page-about img {
    max-width: 100%;
    height: auto;
    min-width: 200px; /* Enforce minimum display width */
    min-height: 200px; /* Enforce minimum display height */
    object-fit: cover; /* Adjust as needed for specific image types */
}

/* Override for specific smaller images that are not content images, e.g., if any were mistakenly included below 200px */
/* This rule ensures that content images remain large. For decorative icons, if they exist, specific classes would be needed. */
/* However, the prompt strictly forbids small icons, so this should only apply to actual content images. */
/* The min-width/height above should cover all content images. */