.page-about {
    color: #ffffff; /* Light text for dark body background */
    background-color: transparent; /* Body background is handled by shared.css */
    padding-top: var(--header-offset, 120px); /* Ensure content is not hidden by fixed header */
}

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

/* Hero Section */
.page-about__hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 80px 20px;
    background-color: #1A202C;
    position: relative;
    overflow: hidden;
}

.page-about__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    margin-bottom: 40px;
}

.page-about__hero-title {
    font-size: 3.5em;
    color: #FFD700;
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: 700;
}

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

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

.page-about__hero-btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    white-space: nowrap;
}

.page-about__hero-btn--primary {
    background-color: #FFD700;
    color: #1A202C;
}

.page-about__hero-btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

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

.page-about__hero-btn--secondary:hover {
    background-color: rgba(255, 215, 0, 0.1);
    transform: translateY(-3px);
}

.page-about__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    opacity: 0.15;
    overflow: hidden;
}

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

/* Story Section */
.page-about__story-section {
    padding: 80px 0;
    background-color: #0F131C;
}

.page-about__story-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.page-about__story-content {
    flex: 1;
    font-size: 1.1em;
    line-height: 1.7;
    color: #e0e0e0;
}

.page-about__story-content p:not(:last-child) {
    margin-bottom: 20px;
}

.page-about__story-image-wrapper {
    flex: 1;
    min-width: 400px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-about__story-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

/* Mission & Values Section */
.page-about__mission-values-section {
    padding: 80px 0;
    background-color: #1A202C;
}

.page-about__mission-values-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.page-about__card {
    background-color: rgba(255, 255, 255, 0.08);
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__card:hover {
    transform: translateY(-8px);
    background-color: rgba(255, 215, 0, 0.15);
}

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

.page-about__card p {
    font-size: 1em;
    line-height: 1.6;
    color: #c0c0c0;
}

/* Why Choose Section */
.page-about__why-choose-section {
    padding: 80px 0;
    background-color: #0F131C;
}

.page-about__why-choose-title {
    font-size: 2.8em;
    color: #FFD700;
    text-align: center;
    margin-bottom: 60px;
    font-weight: 700;
}

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

.page-about__feature-item {
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-item:hover {
    background-color: rgba(255, 215, 0, 0.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.page-about__feature-icon {
    width: 250px; /* Min size 200px */
    height: 187px; /* Min size 200px */
    object-fit: contain;
    margin-bottom: 25px;
    border-radius: 8px;
}

.page-about__feature-title {
    font-size: 1.6em;
    color: #FFD700;
    margin-bottom: 10px;
    font-weight: 600;
}

.page-about__feature-item p {
    font-size: 0.95em;
    line-height: 1.6;
    color: #c0c0c0;
}

/* Call to Action Bottom Section */
.page-about__cta-bottom-section {
    padding: 80px 0;
    background-color: #1A202C;
    text-align: center;
}

.page-about__cta-bottom-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.page-about__cta-bottom-description {
    font-size: 1.2em;
    color: #e0e0e0;
    margin-bottom: 40px;
    line-height: 1.6;
}

.page-about__cta-bottom-btn {
    display: inline-block;
    padding: 18px 45px;
    background-color: #FFD700;
    color: #1A202C;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2em;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 215, 0, 0.3);
}

.page-about__cta-bottom-btn:hover {
    background-color: #e6c200;
    transform: translateY(-5px);
    box-shadow: 0 12px 25px rgba(255, 215, 0, 0.4);
}

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

    .page-about__story-grid {
        flex-direction: column;
        gap: 40px;
    }

    .page-about__story-image-wrapper {
        min-width: unset;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .page-about {
        padding-top: var(--header-offset, 120px); /* Ensure mobile content is not hidden */
    }

    .page-about__hero-section {
        padding: 60px 15px;
    }

    .page-about__hero-title {
        font-size: 2.5em;
    }

    .page-about__hero-description {
        font-size: 1em;
    }

    .page-about__hero-actions {
        flex-direction: column;
        gap: 15px;
    }

    .page-about__hero-btn {
        width: 100%;
        padding: 12px 25px;
    }

    .page-about__story-section, 
    .page-about__mission-values-section, 
    .page-about__why-choose-section, 
    .page-about__cta-bottom-section {
        padding: 60px 0;
    }

    .page-about__story-title,
    .page-about__mission-values-title,
    .page-about__why-choose-title,
    .page-about__cta-bottom-title {
        font-size: 2.2em;
        margin-bottom: 40px;
    }

    .page-about__card {
        padding: 25px;
    }

    .page-about__card-title {
        font-size: 1.6em;
    }

    .page-about__feature-icon {
        width: 250px; /* Maintain minimum size */
        height: 187px; /* Maintain minimum size */
    }

    .page-about__cta-bottom-description {
        font-size: 1em;
    }

    .page-about__cta-bottom-btn {
        padding: 15px 30px;
        font-size: 1.1em;
    }

    .page-about__container img {
        max-width: 100%; /* Ensure images don't overflow */
        height: auto;
    }
    
    .page-about__story-image-wrapper img, 
    .page-about__feature-item img {
        max-width: 100%; 
        height: auto;
    }
    
    .page-about__story-image {
        max-width: 100%;
        height: auto;
    }
}

@media (max-width: 480px) {
    .page-about__hero-title {
        font-size: 2em;
    }

    .page-about__story-title,
    .page-about__mission-values-title,
    .page-about__why-choose-title,
    .page-about__cta-bottom-title {
        font-size: 1.8em;
    }

    .page-about__card-title {
        font-size: 1.4em;
    }
}

/* Ensure content area images maintain minimum size or scale responsively */
.page-about img {
    min-width: 200px;
    min-height: 200px;
    object-fit: cover; /* Or contain, depending on context */
}

.page-about__hero-image {
    min-width: 100%;
    min-height: 100%;
}

.page-about__story-image {
    min-width: 200px;
    min-height: 200px;
}

.page-about__feature-icon {
    min-width: 200px;
    min-height: 200px;
}