:root {
    --primary-color: #11A84E; /* Main */
    --secondary-color: #22C768; /* Aux */
    --btn-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --bg-card: #11271B;
    --bg-primary: #08160F; /* Background */
    --text-main: #F2FFF6;
    --text-secondary: #A7D9B8;
    --border-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;

    /* RGB for shadows */
    --primary-color-rgb: 17, 168, 78;
    --secondary-color-rgb: 34, 199, 104;
    --glow-rgb: 87, 227, 141;
    --border-color-rgb: 46, 122, 78;
}

.page-about {
    font-family: 'Arial', sans-serif;
    color: var(--text-main); /* Default text color for the page */
    background-color: var(--bg-primary); /* Default background for the page */
    line-height: 1.6;
}

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

.page-about__section-title {
    font-size: 2.5rem;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    line-height: 1.2;
}

.page-about__sub-title {
    font-size: 1.8rem;
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 600;
}

.page-about p {
    margin-bottom: 15px;
    color: var(--text-secondary);
}

.page-about__text-block {
    padding: 20px;
}

/* --- Hero Section --- */
.page-about__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Ensure image is above content */
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    background-color: var(--bg-primary);
    overflow: hidden;
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-height: 700px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 30px; /* Space between image and content */
}

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

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

.page-about__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
    color: var(--text-main);
    margin-bottom: 20px;
    font-weight: 800;
    line-height: 1.2;
}

.page-about__description {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

/* --- Buttons --- */
.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%; /* Ensure buttons don't overflow */
}

.page-about__btn-primary {
    background: var(--btn-gradient);
    color: var(--text-main); /* White text on dark green gradient */
    border: 2px solid transparent;
}

.page-about__btn-primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--glow-rgb), 0.4);
}

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

.page-about__btn-secondary:hover {
    background: rgba(var(--border-color-rgb), 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(var(--glow-rgb), 0.2);
}

.page-about__btn-text {
    background: none;
    color: var(--primary-color); /* Use primary color for text links */
    border: none;
    padding: 0;
    text-decoration: underline;
    font-weight: 500;
}

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

/* --- Mission & Vision Section --- */
.page-about__mission-vision-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

.page-about__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}

.page-about__content-grid--reverse {
    direction: rtl; /* Reverse order for content grid */
}

.page-about__content-grid--reverse > .page-about__image-wrapper {
    grid-column: 2 / 3; /* Image to second column */
    direction: ltr;
}

.page-about__content-grid--reverse > .page-about__text-block {
    grid-column: 1 / 2; /* Text to first column */
    direction: ltr;
}


.page-about__image-wrapper {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

/* --- Why Choose Us Section --- */
.page-about__why-choose-us-section {
    padding: 80px 0;
    background-color: var(--bg-card); /* Darker background for this section */
    color: var(--text-main); /* Light text on dark background */
}

.page-about__why-choose-us-section .page-about__section-title {
    color: var(--text-main);
}

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

.page-about__feature-card {
    background-color: var(--bg-primary); /* Slightly lighter card background */
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.page-about__feature-icon {
    width: 100%; /* Ensure icon is large enough */
    max-width: 400px;
    height: auto;
    margin: 0 auto 20px auto;
    display: block;
    border-radius: 5px;
}

.page-about__feature-title {
    font-size: 1.3rem;
    color: var(--text-main);
    margin-bottom: 10px;
    font-weight: 700;
}

.page-about__feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* --- Commitment Section --- */
.page-about__commitment-section {
    padding: 80px 0;
    background-color: var(--bg-primary);
}

/* --- FAQ Section --- */
.page-about__faq-section {
    padding: 80px 0;
    background-color: var(--bg-card); /* Darker background for FAQ */
    color: var(--text-main); /* Light text on dark background */
}

.page-about__faq-section .page-about__section-title {
    color: var(--text-main);
}

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

.page-about__faq-item {
    background-color: var(--bg-primary);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--divider-color);
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-main);
    background-color: var(--bg-primary);
    position: relative;
    user-select: none;
    list-style: none; /* For details/summary */
}

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

.page-about__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--glow-color);
}

.page-about__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 1rem;
    color: var(--text-secondary);
}

.page-about__faq-answer p {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

/* --- CTA Bottom Section --- */
.page-about__cta-bottom {
    padding: 60px 0;
    text-align: center;
    background-color: var(--bg-primary);
}

.page-about__cta-bottom p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Responsive Design --- */
@media (max-width: 1024px) {
    .page-about__section-title {
        font-size: 2.2rem;
    }
    .page-about__sub-title {
        font-size: 1.6rem;
    }
    .page-about__content-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .page-about__content-grid--reverse > .page-about__image-wrapper,
    .page-about__content-grid--reverse > .page-about__text-block {
        grid-column: auto; /* Reset order for mobile */
        direction: ltr;
    }
    .page-about__hero-image-wrapper {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    .page-about {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-about__hero-section {
        padding-top: 10px !important; /* body already has padding-top */
        padding-bottom: 40px;
    }
    .page-about__hero-image-wrapper {
        max-height: 300px;
        margin-bottom: 20px;
    }
    .page-about__main-title {
        font-size: clamp(1.8rem, 7vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-about__description {
        font-size: 1rem;
        margin-bottom: 25px;
    }
    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-about__btn-primary,
    .page-about__btn-secondary,
    .page-about__btn-text {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-about__section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .page-about__sub-title {
        font-size: 1.4rem;
    }
    .page-about__mission-vision-section,
    .page-about__why-choose-us-section,
    .page-about__commitment-section,
    .page-about__faq-section,
    .page-about__cta-bottom {
        padding: 40px 0;
    }
    .page-about__container {
        padding: 0 15px;
    }
    .page-about__feature-card {
        padding: 20px;
    }
    .page-about__feature-icon {
        max-width: 200px; /* Adjust for smaller screens */
    }
    .page-about__image-wrapper {
        max-width: 100%;
    }
    .page-about__image {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-about img {
      max-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__why-choose-us-section,
    .page-about__commitment-section,
    .page-about__faq-section,
    .page-about__cta-bottom,
    .page-about__faq-list,
    .page-about__features-grid,
    .page-about__content-grid,
    .page-about__hero-content,
    .page-about__text-block,
    .page-about__image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-about__faq-question {
        font-size: 1rem;
        padding: 15px;
    }
    .page-about__faq-answer {
        padding: 0 15px 15px 15px;
    }
}