.page-about {
    padding-top: 10px; /* Small top padding to avoid direct header overlap, body handles main offset */
    background-color: var(--deep-navy); /* Base background for the page */
    color: var(--text-main);
}

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

.page-about__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-bottom: 40px;
    background: linear-gradient(180deg, var(--main-color) 0%, var(--deep-navy) 100%);
    position: relative;
    overflow: hidden;
}

.page-about__hero-visual {
    width: 100%;
    margin-bottom: 20px; /* Space between image and content */
}

.page-about__hero-visual img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 16/9; /* Maintain aspect ratio */
    border-radius: 8px; /* Slightly rounded corners for visual appeal */
}

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

.page-about__main-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gold);
    margin-bottom: 15px;
    text-shadow: 0 0 10px rgba(79, 168, 255, 0.5);
}

.page-about__intro-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--text-secondary);
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.page-about__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-about__btn--primary {
    background: var(--button-gradient);
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(43, 115, 246, 0.4);
}

.page-about__btn--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(43, 115, 246, 0.6);
}

.page-about__btn--secondary {
    background-color: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-secondary);
}

.page-about__btn--secondary:hover {
    background-color: var(--border-color);
    color: var(--text-main);
}

.page-about__section-title {
    font-size: clamp(1.5rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--gold);
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    text-shadow: 0 0 8px rgba(242, 193, 78, 0.4);
}

/* Story Section */
.page-about__story-section {
    background-color: var(--card-bg);
    padding: 60px 0;
    margin-bottom: 20px;
    border-radius: 8px;
}

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

.page-about__story-text {
    flex: 1;
    line-height: 1.7;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

.page-about__story-text p {
    margin-bottom: 15px;
}

.page-about__story-image {
    flex: 1;
    min-width: 300px; /* Ensure image doesn't get too small */
}

.page-about__story-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

/* Mission & Values Section */
.page-about__mission-values-section {
    padding: 60px 0;
    background-color: var(--deep-navy);
}

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

.page-about__mission-image {
    flex: 1;
    min-width: 300px;
}

.page-about__mission-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__mission-content {
    flex: 1;
    line-height: 1.7;
    font-size: 1.05rem;
    color: var(--text-secondary);
}

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

.page-about__value-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    color: var(--text-main);
}

.page-about__value-item::before {
    content: '✅'; /* Unicode checkmark */
    position: absolute;
    left: 0;
    top: 0;
    color: var(--glow);
    font-size: 1.1em;
}

/* Why Choose Us Section */
.page-about__why-choose-us-section {
    background-color: var(--card-bg);
    padding: 60px 0;
    margin-top: 20px;
    border-radius: 8px;
}

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

.page-about__feature-card {
    background-color: var(--deep-navy);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--divider);
    transition: transform 0.3s ease;
}

.page-about__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about__feature-title {
    font-size: 1.4rem;
    color: var(--glow);
    margin-bottom: 15px;
}

.page-about__feature-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.page-about__cta-center {
    text-align: center;
    margin-top: 50px;
}

/* Join Us Section */
.page-about__join-us-section {
    padding: 60px 0;
    text-align: center;
    background-color: var(--deep-navy);
    margin-top: 20px;
    border-radius: 8px;
}

.page-about__join-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Responsive adjustments */
@media (max-width: 849px) {
    .page-about__hero-visual img {
        aspect-ratio: 4/3;
    }

    .page-about__story-grid,
    .page-about__mission-grid {
        flex-direction: column;
    }

    .page-about__story-image,
    .page-about__mission-image {
        order: -1; /* Image appears above text on mobile */
        margin-bottom: 30px;
    }

    .page-about__story-image img,
    .page-about__mission-image img {
        max-width: 100%;
        height: auto;
        min-width: 200px; /* Ensure min image size */
    }

    .page-about__features-grid {
        grid-template-columns: 1fr;
    }

    .page-about__btn {
        width: 100%;
        max-width: 280px;
    }

    .page-about__cta-group {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .page-about__hero-visual img,
    .page-about__story-image img,
    .page-about__mission-image img {
        max-width: 100%;
        height: auto;
    }

    .page-about__story-image img,
    .page-about__mission-image img,
    .page-about__feature-card img { /* Targeting any img in feature card if added */
        min-width: 200px; /* Enforce min width */
        min-height: 200px; /* Enforce min height */
    }
    /* Ensure content area images are not too small */
    .page-about__story-section img,
    .page-about__mission-values-section img {
        width: 100%;
        height: auto;
        min-width: 200px;
        min-height: 200px;
    }
}

@media (max-width: 549px) {
    .page-about__hero-visual img {
        aspect-ratio: 1/1; /* More square on very small screens */
    }

    .page-about__section-title {
        padding-top: 20px;
    }
}