.page-about {
    color: #333333; /* Default text color for light body background */
    line-height: 1.6;
    font-family: Arial, sans-serif;
}

.page-about__hero-section {
    position: relative;
    padding-top: var(--header-offset, 120px); /* Ensures content is not hidden by fixed header */
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: #f5f5f5;
    background-color: #0A0A0A;
    padding-bottom: 60px;
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 1920px;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    z-index: 0;
}

.page-about__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.page-about__hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    padding: 20px;
    margin: 0 auto;
}

.page-about__hero-title {
    font-size: 3.2em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-about__cta-button {
    display: inline-block;
    background-color: #FFD700;
    color: #0A0A0A;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.page-about__cta-button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-about__story-section,
.page-about__mission-vision-section,
.page-about__values-section,
.page-about__cta-section {
    padding: 60px 0;
}

.page-about__story-section {
    background-color: #f9f9f9;
}

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

.page-about__section-title {
    font-size: 2.5em;
    color: #0A0A0A;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
}

.page-about__text-block {
    font-size: 1.1em;
    margin-bottom: 30px;
    text-align: justify;
}

.page-about__image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.page-about__grid-image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.page-about__mission-vision-section {
    background-color: #0A0A0A;
    color: #f5f5f5;
}

.page-about__content-area--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.page-about__vision-card,
.page-about__mission-card {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.page-about__card-title {
    font-size: 2em;
    color: #FFD700;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-about__card-text {
    font-size: 1.1em;
    line-height: 1.8;
    text-align: justify;
}

.page-about__values-section {
    background-color: #ffffff;
}

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

.page-about__value-item {
    text-align: center;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    background-color: #fdfdfd;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.page-about__value-icon {
    width: 250px; /* Minimum 200px */
    height: 187px; /* Maintain aspect ratio */
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 5px;
}

.page-about__value-title {
    font-size: 1.5em;
    color: #0A0A0A;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-about__value-description {
    font-size: 1em;
    color: #555555;
    line-height: 1.7;
    text-align: justify;
}

.page-about__cta-section {
    background-color: #0A0A0A;
    color: #f5f5f5;
    text-align: center;
}

.page-about__cta-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.page-about__cta-title {
    font-size: 2.8em;
    color: #FFD700;
    margin-bottom: 25px;
    font-weight: 700;
}

.page-about__cta-text {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #e0e0e0;
}

.page-about__cta-button--large {
    padding: 18px 45px;
    font-size: 1.2em;
    margin-right: 20px;
}

.page-about__cta-button--secondary {
    background-color: transparent;
    border: 2px solid #FFD700;
    color: #FFD700;
}

.page-about__cta-button--secondary:hover {
    background-color: #FFD700;
    color: #0A0A0A;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-about__hero-title {
        font-size: 2.8em;
    }
    .page-about__hero-description {
        font-size: 1.2em;
    }
    .page-about__section-title {
        font-size: 2.2em;
    }
    .page-about__card-title {
        font-size: 1.8em;
    }
    .page-about__cta-title {
        font-size: 2.4em;
    }
    .page-about__cta-button--large,
    .page-about__cta-button--secondary {
        padding: 15px 30px;
        font-size: 1.1em;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding-top: var(--header-offset, 80px); /* Adjust for mobile header */
        padding-bottom: 40px;
    }
    .page-about__hero-title {
        font-size: 2.2em;
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-about__image-grid {
        grid-template-columns: 1fr;
    }
    .page-about__content-area--split {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .page-about__section-title {
        font-size: 2em;
    }
    .page-about__card-title {
        font-size: 1.6em;
    }
    .page-about__values-grid {
        grid-template-columns: 1fr;
    }
    .page-about__value-icon {
        width: 200px;
        height: 150px;
    }
    .page-about__cta-title {
        font-size: 2em;
    }
    .page-about__cta-text {
        font-size: 1.1em;
    }
    .page-about__cta-button--large,
    .page-about__cta-button--secondary {
        display: block;
        margin: 15px auto;
        width: 80%;
    }
    .page-about__cta-button--large {
        margin-right: auto;
    }

    /* Ensure content images do not overflow */
    .page-about__image-grid img,
    .page-about__value-item img {
        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__card-title {
        font-size: 1.4em;
    }
    .page-about__cta-title {
        font-size: 1.8em;
    }
    .page-about__cta-button--large,
    .page-about__cta-button--secondary {
        width: 90%;
    }
}