.page-about {
    background-color: #08160F;
    color: #F2FFF6;
    font-family: Arial, sans-serif;
}

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

.page-about__hero-section {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 10px; /* Small top padding, relying on body for header offset */
    padding-bottom: 40px;
    background: linear-gradient(180deg, #0A4B2C 0%, #08160F 100%);
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for aesthetic */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}

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

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

.page-about__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    color: #F2C14E; /* Gold */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
    font-size: clamp(1rem, 1.5vw, 1.3rem);
    color: #A7D9B8;
    margin-bottom: 30px;
    line-height: 1.6;
}

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

.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__btn-tertiary,
.page-about__faq-link {
    display: inline-block;
    padding: 14px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-align: center;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-about__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(42, 209, 111, 0.6);
}

.page-about__btn-secondary {
    background: #11271B;
    color: #2AD16F;
    border: 2px solid #2AD16F;
    box-shadow: 0 4px 15px rgba(46, 122, 78, 0.3);
}

.page-about__btn-secondary:hover {
    transform: translateY(-3px);
    background: #2AD16F;
    color: #F2FFF6;
    box-shadow: 0 6px 20px rgba(46, 122, 78, 0.5);
}

.page-about__btn-tertiary {
    background: transparent;
    color: #A7D9B8;
    border: 2px solid #2E7A4E;
}

.page-about__btn-tertiary:hover {
    background: #2E7A4E;
    color: #F2FFF6;
    transform: translateY(-3px);
}

.page-about__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: #F2C14E; /* Gold */
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.page-about__text-block {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px auto;
    color: #A7D9B8;
}

.page-about__intro-section,
.page-about__why-choose-section,
.page-about__responsibility-section,
.page-about__join-us-section,
.page-about__faq-section {
    padding: 60px 0;
    border-bottom: 1px solid #1E3A2A;
}

.page-about__intro-section {
    background-color: #08160F;
}

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

.page-about__card {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-about__card:hover {
    transform: translateY(-5px);
}

.page-about__card-title {
    font-size: 1.6rem;
    color: #57E38D; /* Glow */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-about__card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #A7D9B8;
}

.page-about__why-choose-section {
    background-color: #0A4B2C;
}

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

.page-about__feature-card {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease;
}

.page-about__feature-card:hover {
    transform: translateY(-5px);
}

.page-about__feature-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block;
}

.page-about__feature-title {
    font-size: 1.5rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    font-weight: 600;
}

.page-about__feature-description {
    font-size: 1rem;
    line-height: 1.6;
    color: #A7D9B8;
    margin-bottom: 20px;
}

.page-about__feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-about__feature-list-item {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #A7D9B8;
    margin-bottom: 8px;
    position: relative;
    padding-left: 20px;
}

.page-about__feature-list-item::before {
    content: '✓';
    color: #2AD16F;
    position: absolute;
    left: 0;
    font-weight: bold;
}

.page-about__feature-list-item a {
    color: #2AD16F;
    text-decoration: none;
}

.page-about__feature-list-item a:hover {
    text-decoration: underline;
}

.page-about__responsibility-section {
    background-color: #08160F;
}

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

.page-about__info-card {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-about__info-card-title {
    font-size: 1.6rem;
    color: #57E38D; /* Glow */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-about__info-card-text {
    font-size: 1rem;
    line-height: 1.6;
    color: #A7D9B8;
}

.page-about__join-us-section {
    background-color: #0A4B2C;
    text-align: center;
    padding-bottom: 80px;
}

.page-about__cta-buttons--bottom {
    margin-top: 50px;
}

.page-about__faq-section {
    background-color: #08160F;
}

.page-about__faq-list {
    max-width: 900px;
    margin: 40px auto 0 auto;
}

.page-about__faq-item {
    background-color: #11271B;
    border: 1px solid #2E7A4E;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2rem;
    font-weight: 600;
    color: #F2FFF6;
    cursor: pointer;
    background-color: #1E3A2A;
    user-select: none;
    position: relative;
    list-style: none; /* For details/summary */
}

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

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

.page-about__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #57E38D;
    transition: transform 0.3s ease;
}

.page-about__faq-item[open] .page-about__faq-toggle {
    transform: rotate(45deg);
}

.page-about__faq-answer {
    padding: 0 25px 20px 25px;
    font-size: 1rem;
    line-height: 1.6;
    color: #A7D9B8;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
}

.page-about__faq-item[open] .page-about__faq-answer {
    max-height: 500px; /* Sufficiently large to cover content */
    padding-top: 15px;
}

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

.page-about__faq-link {
    color: #2AD16F;
    text-decoration: underline;
    font-size: 1rem;
    font-weight: 500;
}

.page-about__faq-link:hover {
    color: #57E38D;
}

/* --- Responsive Styles --- */
@media (max-width: 1024px) {
    .page-about__hero-content {
        padding: 0 30px;
    }

    .page-about__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }

    .page-about__hero-description {
        font-size: clamp(0.95rem, 1.7vw, 1.2rem);
    }

    .page-about__section-title {
        font-size: clamp(1.6rem, 3vw, 2.5rem);
    }

    .page-about__text-block {
        font-size: 1rem;
    }

    .page-about__card-grid,
    .page-about__features-grid,
    .page-about__info-cards {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }

    .page-about__card,
    .page-about__feature-card,
    .page-about__info-card {
        padding: 25px;
    }

    .page-about__feature-image {
        height: 200px;
    }

    .page-about__faq-list {
        max-width: 768px;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding-top: 10px !important;
        padding-bottom: 30px;
    }

    .page-about__hero-image-wrapper {
        max-height: 400px;
        margin-bottom: 20px;
    }

    .page-about__hero-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-about__hero-content {
        padding: 0 15px;
    }

    .page-about__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 10px;
    }

    .page-about__hero-description {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
        margin-bottom: 20px;
    }

    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
        padding: 0 15px;
    }

    .page-about__btn-primary,
    .page-about__btn-secondary,
    .page-about__btn-tertiary,
    .page-about__faq-link,
    .page-about a[class*="button"],
    .page-about a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        white-space: normal !important;
        word-wrap: break-word !important;
        box-sizing: border-box !important;
    }

    .page-about__intro-section,
    .page-about__why-choose-section,
    .page-about__responsibility-section,
    .page-about__join-us-section,
    .page-about__faq-section {
        padding: 40px 0;
    }

    .page-about__container {
        padding: 0 15px;
        width: 100%;
        max-width: 100%;
        box-sizing: border-box !important;
    }

    .page-about__section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        margin-bottom: 30px;
    }

    .page-about__text-block {
        font-size: 0.95rem;
        margin-bottom: 40px;
        padding: 0 5px;
    }

    .page-about__card-grid,
    .page-about__features-grid,
    .page-about__info-cards {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 30px;
    }

    .page-about__card,
    .page-about__feature-card,
    .page-about__info-card {
        padding: 20px;
    }

    .page-about__card-title,
    .page-about__feature-title,
    .page-about__info-card-title {
        font-size: 1.4rem;
    }

    .page-about__card-text,
    .page-about__feature-description,
    .page-about__info-card-text,
    .page-about__feature-list-item {
        font-size: 0.9rem;
    }

    .page-about__feature-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-height: 200px; /* Ensure min size */
        object-fit: cover;
    }

    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block;
    }

    .page-about__faq-list {
        margin-top: 30px;
    }

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

    .page-about__faq-toggle {
        font-size: 1.3rem;
    }

    .page-about__faq-answer {
        padding: 0 20px 15px 20px;
        font-size: 0.95rem;
    }
    
    .page-about__section,
    .page-about__card,
    .page-about__container,
    .page-about__hero-section,
    .page-about__intro-section,
    .page-about__why-choose-section,
    .page-about__responsibility-section,
    .page-about__join-us-section,
    .page-about__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-about__cta-buttons--bottom {
        flex-wrap: wrap !important;
        gap: 15px;
        margin-top: 40px;
    }
    .page-about__cta-buttons--bottom .page-about__btn-primary,
    .page-about__cta-buttons--bottom .page-about__btn-secondary,
    .page-about__cta-buttons--bottom .page-about__btn-tertiary {
        flex-grow: 1;
    }
}