.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main, contrasts with #08160F background */
    background-color: #08160F; /* Background color */
    padding-bottom: 50px; /* Add some padding at the bottom */
}

.page-about__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    overflow: hidden;
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-height: 500px; /* Limit height for hero image */
    overflow: hidden;
}

.page-about__hero-image {
    width: 1920px; /* HTML width/height attributes for CLS, CSS handles responsiveness */
    height: 1080px;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

.page-about__hero-content {
    padding: 40px 20px;
    width: 100%;
    max-width: 1200px;
    box-sizing: border-box;
    background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%); /* Deep Green to Background */
    margin-top: -50px; /* Overlap slightly with image for visual flow */
    position: relative;
    z-index: 1;
    border-radius: 15px 15px 0 0;
}

.page-about__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    font-weight: bold;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow */
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__subtitle {
    font-size: 1.2rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap; /* Ensure buttons wrap on smaller screens */
}

.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__btn-link {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-about__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #ffffff;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(42, 209, 111, 0.4);
}

.page-about__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-about__btn-secondary {
    background: transparent;
    color: #57E38D; /* Glow color */
    border: 2px solid #57E38D;
}

.page-about__btn-secondary:hover {
    background: rgba(87, 227, 141, 0.1);
    color: #F2FFF6; /* Text Main */
}

.page-about__btn-link {
    background: transparent;
    color: #F2C14E; /* Gold */
    border: 1px solid #F2C14E;
    padding: 8px 15px;
    font-size: 0.9em;
    margin-top: 15px;
}

.page-about__btn-link:hover {
    background: rgba(242, 193, 78, 0.1);
    color: #ffffff;
}

.page-about__section {
    padding: 60px 20px;
    text-align: center;
    box-sizing: border-box;
}

.page-about__mission-vision, .page-about__why-choose, .page-about__achievements, .page-about__contact-us, .page-about__conclusion {
    background-color: #0A4B2C; /* Deep Green, as light background alternative */
    color: #F2FFF6;
}

.page-about__core-values, .page-about__team, .page-about__social-responsibility, .page-about__faq {
    background-color: #08160F; /* Background, as dark background alternative */
    color: #F2FFF6;
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-about__section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #F2C14E; /* Gold */
    margin-bottom: 40px;
    font-weight: bold;
    text-shadow: 0 0 8px rgba(87, 227, 141, 0.3);
}

.page-about__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #57E38D; /* Glow */
    margin-bottom: 20px;
    font-weight: 600;
}

.page-about__description-text {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__content-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
}

.page-about__text-block p {
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
}

.page-about__image-inline {
    width: 800px; /* HTML width/height attributes for CLS, CSS handles responsiveness */
    height: 600px;
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

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

.page-about__card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%; /* Ensure cards have equal height */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-about__card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
}

.page-about__value-title,
.page-about__feature-title,
.page-about__achievement-title {
    font-size: 1.4rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about__value-description,
.page-about__feature-description,
.page-about__achievement-description {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-about__team-member {
    text-align: center;
}

.page-about__team-photo {
    width: 400px; /* HTML width/height attributes for CLS, CSS handles responsiveness */
    height: 400px;
    max-width: 150px;
    max-height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px auto;
    border: 3px solid #57E38D; /* Glow */
    box-shadow: 0 0 15px rgba(87, 227, 141, 0.5);
}

.page-about__member-name {
    font-size: 1.3rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 5px;
}

.page-about__member-role {
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-about__image-small {
    width: 600px; /* HTML width/height attributes for CLS, CSS handles responsiveness */
    height: 400px;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 20px auto 0 auto;
    border-radius: 8px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.page-about__responsibility-list {
    list-style: none;
    padding: 0;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.page-about__responsibility-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-about__responsibility-item:last-child {
    margin-bottom: 0;
}

.page-about__list-title {
    font-size: 1.3rem;
    color: #57E38D; /* Glow */
    margin-bottom: 10px;
}

.page-about__responsibility-item p {
    color: #F2FFF6; /* Text Main */
}

.page-about__contact-info {
    font-size: 1.1rem;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 30px;
    text-align: left;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__contact-info a {
    color: #F2C14E; /* Gold */
    text-decoration: none;
}

.page-about__contact-info a:hover {
    text-decoration: underline;
}

.page-about__contact-cta {
    margin-top: 40px;
}

/* FAQ Styling */
.page-about__faq-list {
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
    margin-top: 30px;
}

.page-about__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2rem;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    cursor: pointer;
    background-color: #0A4B2C; /* Deep Green */
    border-bottom: 1px solid #1E3A2A; /* Divider */
    transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
    background-color: #13994A; /* Darker green from button gradient */
}

.page-about__faq-item[open] .page-about__faq-question {
    border-bottom-color: transparent;
}

.page-about__faq-qtext {
    flex-grow: 1;
}

.page-about__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: #F2C14E; /* Gold */
}

.page-about__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-about__faq-answer p {
    margin-top: 15px;
}

.page-about__faq-answer a {
    color: #F2C14E; /* Gold */
    text-decoration: underline;
}

.page-about__faq-answer a:hover {
    color: #57E38D; /* Glow */
}

/* Details/Summary specific styling */
.page-about__faq-item summary {
    list-style: none;
}

.page-about__faq-item summary::-webkit-details-marker {
    display: none;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .page-about {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-about__hero-section {
        padding-left: 0;
        padding-right: 0;
    }

    .page-about__hero-content {
        padding: 30px 15px;
        margin-top: -30px;
    }

    .page-about__main-title {
        font-size: 2rem;
    }

    .page-about__subtitle {
        font-size: 1rem;
    }

    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px; /* Ensure buttons have horizontal padding */
    }

    .page-about__btn-primary,
    .page-about__btn-secondary,
    .page-about__btn-link {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .page-about__section {
        padding: 40px 15px;
    }

    .page-about__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }

    .page-about__sub-title {
        font-size: 1.3rem;
    }

    .page-about__description-text {
        font-size: 1rem;
    }

    .page-about__content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .page-about__values-grid,
    .page-about__features-grid,
    .page-about__team-grid,
    .page-about__achievement-list {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-about__card {
        padding: 25px;
    }

    .page-about__team-photo {
        max-width: 120px;
        max-height: 120px;
    }

    .page-about__responsibility-item {
        padding: 20px;
    }

    .page-about__list-title {
        font-size: 1.2rem;
    }

    .page-about__contact-info {
        font-size: 1rem;
    }

    .page-about__faq-question {
        font-size: 1.1rem;
        padding: 15px 20px;
    }

    .page-about__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 0.95rem;
    }

    /* Image responsiveness for mobile */
    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .page-about__section,
    .page-about__card,
    .page-about__container,
    .page-about__hero-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    
    /* Hero image wrapper itself should not have padding to allow full bleed image */
    .page-about__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 0 !important;
        padding-right: 0 !important;
    }

    /* Video section (if present) */
    .page-about__video-section {
        padding-top: 10px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-about__video-container, .page-about__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    /* Ensure multiple buttons stack */
    .page-about__cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
}