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

.page-about__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    background-color: #08160F; /* Deep Green background for hero */
    overflow: hidden;
}

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

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly dim the image for text contrast */
}

.page-about__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    max-width: 900px;
    padding: 20px;
    z-index: 10;
    color: #F2FFF6; /* Ensure text is visible on dimmed image */
}

.page-about__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.03em;
    color: #F2C14E; /* Gold for main title */
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
}

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

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

.page-about__btn-primary,
.page-about__btn-secondary {
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

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

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

.page-about__btn-secondary {
    background: transparent;
    color: #2AD16F;
    border: 2px solid #2AD16F;
}

.page-about__btn-secondary:hover {
    background: rgba(42, 209, 111, 0.1);
    color: #F2FFF6;
    transform: translateY(-2px);
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.page-about__mission-vision-section .page-about__container,
.page-about__history-values-section .page-about__container {
    justify-content: space-between;
}

.page-about__text-block {
    flex: 1;
    min-width: 300px;
}

.page-about__image-content {
    flex: 1;
    min-width: 300px;
    max-width: 600px;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    color: #F2C14E; /* Gold for section titles */
    margin-bottom: 25px;
    text-align: center;
    font-weight: bold;
}

.page-about__mission-vision-section .page-about__section-title,
.page-about__why-choose-us-section .page-about__section-title,
.page-about__faq-section .page-about__section-title {
    color: #11A84E; /* Main color for titles on light background */
}

.page-about__mission-vision-section,
.page-about__why-choose-us-section,
.page-about__faq-section {
    background-color: #0A4B2C; /* Deep Green background for light sections */
    color: #F2FFF6; /* Text Main */
}

.page-about__intro-text {
    font-size: 1.1rem;
    line-height: 1.6;
    text-align: center;
    margin-bottom: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    color: #A7D9B8; /* Text Secondary */
}

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

.page-about__list li {
    margin-bottom: 15px;
    position: relative;
    padding-left: 30px;
    font-size: 1.05rem;
    line-height: 1.6;
}

.page-about__list li::before {
    content: '✅';
    position: absolute;
    left: 0;
    color: #2AD16F;
    font-size: 1.2rem;
}

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

.page-about__feature-card {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #2E7A4E; /* Border color */
}

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

.page-about__feature-icon {
    width: 100px;
    height: 100px;
    object-fit: contain;
    margin-bottom: 20px;
    border-radius: 8px;
}

.page-about__card-title {
    font-size: 1.5rem;
    color: #F2C14E; /* Gold for card titles */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about__card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #A7D9B8; /* Text Secondary */
}

.page-about__cta-section {
    background-color: #08160F; /* Background */
    padding: 80px 20px;
    text-align: center;
}

.page-about__cta-section .page-about__section-title {
    color: #F2C14E; /* Gold */
}

.page-about__cta-section .page-about__description {
    max-width: 800px;
    margin-bottom: 40px;
}

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

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

.page-about__faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.15rem;
    color: #F2FFF6; /* Text Main */
    background-color: #11271B; /* Card BG */
    transition: background-color 0.3s ease;
}

.page-about__faq-item summary:hover {
    background-color: rgba(17, 42, 27, 0.8);
}

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

.page-about__faq-qtext {
    flex-grow: 1;
    color: #F2C14E; /* Gold for FAQ question */
}

.page-about__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: #2AD16F;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .page-about__container {
        flex-direction: column;
        text-align: center;
    }

    .page-about__image-content {
        order: -1; /* Image appears above text on smaller screens */
        margin-bottom: 30px;
    }

    .page-about__hero-content {
        max-width: 700px;
    }

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

@media (max-width: 768px) {
    .page-about__hero-section {
        padding-bottom: 40px;
    }
    
    .page-about__hero-content {
        position: static;
        transform: none;
        padding: 20px;
        background-color: rgba(8, 22, 15, 0.8); /* Darker background for text on mobile */
        width: 100%;
        box-sizing: border-box;
    }

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

    .page-about__hero-image {
        filter: brightness(0.5); /* Even darker for mobile contrast */
    }

    .page-about__container {
        padding: 20px 15px;
    }

    .page-about__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
    }

    .page-about__description,
    .page-about__intro-text,
    .page-about p,
    .page-about li {
        font-size: 1rem;
    }

    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }

    .page-about__btn-primary,
    .page-about__btn-secondary {
        width: 100% !important;
        padding: 12px 20px;
        font-size: 1rem;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
    }

    .page-about__section-title {
        font-size: clamp(1.5rem, 5vw, 2rem);
    }

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

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

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

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

    .page-about__faq-item summary {
        font-size: 1rem;
        padding: 15px 20px;
    }

    .page-about__faq-answer {
        padding: 0 20px 15px;
    }

    /* Image responsive adaptions */
    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    .page-about__section,
    .page-about__card,
    .page-about__container,
    .page-about__hero-section,
    .page-about__mission-vision-section,
    .page-about__history-values-section,
    .page-about__why-choose-us-section,
    .page-about__cta-section,
    .page-about__faq-section {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    .page-about__hero-section { /* Override padding for hero on mobile to be consistent with others */
        padding-left: 0 !important;
        padding-right: 0 !important;
    }
    .page-about__hero-content {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    .page-about__cta-buttons {
        padding-left: 0 !important;
        padding-right: 0 !important;
        flex-wrap: wrap !important;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .page-about__hero-content {
        padding: 15px;
    }
    .page-about__main-title {
        font-size: clamp(1.5rem, 8vw, 2rem);
    }
    .page-about__description {
        font-size: 0.95rem;
    }
    .page-about__btn-primary, .page-about__btn-secondary {
        font-size: 0.95rem;
        padding: 10px 15px;
    }
    .page-about__section-title {
        font-size: clamp(1.3rem, 6vw, 1.8rem);
    }
    .page-about__feature-card {
        padding: 20px;
    }
    .page-about__card-title {
        font-size: 1.2rem;
    }
    .page-about__faq-item summary {
        font-size: 0.95rem;
        padding: 12px 15px;
    }
    .page-about__faq-answer {
        padding: 0 15px 12px;
    }
}

/* Ensure no filter on images */
.page-about img {
    filter: none; /* Reset any potential filter, only hero image gets brightness filter in HTML */
}
.page-about__hero-image { /* Re-apply brightness filter only for hero image */
    filter: brightness(0.7);
}
@media (max-width: 768px) {
    .page-about__hero-image {
        filter: brightness(0.5);
    }
}