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

.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-main); /* #F2FFF6 */
    background-color: var(--background); /* #08160F */
}

.page-about__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 0 60px 0; /* Small top padding, more bottom padding */
    text-align: center;
    overflow: hidden;
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-height: 70vh; /* Limit height for hero image */
    overflow: hidden;
    position: relative;
    z-index: 1;
}

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

.page-about__hero-content {
    position: relative; /* Ensure content is above image but not overlaying it via absolute positioning */
    z-index: 2;
    padding: 20px;
    max-width: 900px;
    margin-top: -100px; /* Pull content up slightly to overlap visually without overlaying DOM */
    background: linear-gradient(0deg, var(--background) 0%, rgba(8, 22, 15, 0.8) 50%, rgba(8, 22, 15, 0) 100%); /* Fading background for text */
    padding-top: 100px; /* Compensate for margin-top */
}

.page-about__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em); /* Responsive font size for H1 */
    color: var(--text-main); /* #F2FFF6 */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-about__description {
    font-size: 1.1em;
    color: var(--text-secondary); /* #A7D9B8 */
    margin-bottom: 30px;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
    box-sizing: border-box;
}

.page-about__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: 2px solid transparent;
}

.page-about__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    box-shadow: 0 0 15px var(--glow); /* #57E38D */
}

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

.page-about__btn-secondary:hover {
    background: var(--border); /* #2E7A4E */
    color: #ffffff;
}

.page-about__text-link {
    color: var(--gold); /* #F2C14E */
    text-decoration: underline;
}

.page-about__text-link:hover {
    color: var(--text-main); /* #F2FFF6 */
}

.page-about__section {
    padding: 80px 0;
    border-bottom: 1px solid var(--divider); /* #1E3A2A */
}

.page-about__section:last-of-type {
    border-bottom: none;
}

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

.page-about__container--flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-about__section-title {
    font-size: 2.5em;
    color: var(--text-main); /* #F2FFF6 */
    text-align: center;
    margin-bottom: 60px;
    font-weight: bold;
}

.page-about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.page-about__grid--reverse {
    grid-template-areas: "image text"; /* Default for desktop */
}

.page-about__grid--reverse .page-about__text-block {
    grid-area: text;
}

.page-about__grid--reverse .page-about__image-block {
    grid-area: image;
}

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

.page-about__sub-title {
    font-size: 1.8em;
    color: var(--gold); /* #F2C14E */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: bold;
}

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

.page-about ul {
    list-style: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary); /* #A7D9B8 */
}

.page-about ul li {
    margin-bottom: 8px;
}

.page-about strong {
    color: var(--text-main); /* #F2FFF6 */
}

.page-about__image-block {
    text-align: center;
}

.page-about__image {
    max-width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-about__faq-item {
    background: var(--card-bg); /* #11271B */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border); /* #2E7A4E */
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-main); /* #F2FFF6 */
    background-color: var(--deep-green); /* #0A4B2C */
    border-bottom: 1px solid var(--divider); /* #1E3A2A */
}

.page-about__faq-item[open] .page-about__faq-question {
    border-bottom: 1px solid var(--divider);
}

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

.page-about__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    color: var(--gold); /* #F2C14E */
}

.page-about__faq-item[open] .page-about__faq-toggle {
    content: '−';
}

.page-about__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: var(--text-secondary); /* #A7D9B8 */
    background-color: var(--card-bg); /* #11271B */
}

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

/* CTA Bottom Section */
.page-about__cta-bottom {
    text-align: center;
    padding: 80px 0;
    background: var(--deep-green); /* #0A4B2C */
}

.page-about__cta-bottom .page-about__section-title {
    color: var(--gold); /* #F2C14E */
    margin-bottom: 20px;
}

.page-about__cta-bottom p {
    max-width: 800px;
    margin: 0 auto 40px auto;
    font-size: 1.1em;
    color: var(--text-main); /* #F2FFF6 */
}

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

.page-about__image-block--cta {
    display: none; /* Hide image on desktop for this section, show on mobile if space */
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__grid {
        grid-template-columns: 1fr;
    }

    .page-about__grid--reverse {
        grid-template-areas: none; /* Reset grid area for mobile */
    }

    .page-about__hero-content {
        margin-top: -50px; /* Adjust for smaller screens */
        padding-top: 50px;
    }

    .page-about__section-title {
        font-size: 2em;
    }

    .page-about__sub-title {
        font-size: 1.5em;
    }

    .page-about__container--flex {
        flex-direction: column;
        text-align: center;
    }

    .page-about__text-content {
        order: 2; /* Text after image on mobile */
    }

    .page-about__cta-bottom .page-about__cta-buttons {
        order: 3;
    }

    .page-about__image-block--cta {
        display: block; /* Show image on mobile for CTA */
        order: 1;
        margin-bottom: 30px;
    }
}

@media (max-width: 768px) {
    .page-about__section {
        padding: 40px 0;
    }

    .page-about__main-title {
        font-size: clamp(2em, 8vw, 2.8em);
    }

    .page-about__description {
        font-size: 1em;
    }

    .page-about__btn-primary,
    .page-about__btn-secondary {
        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__cta-buttons {
        flex-direction: column !important; /* Stack buttons vertically on mobile */
        gap: 10px !important;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 0 15px;
        overflow: hidden !important;
    }

    /* Mobile image/video/container responsive rules */
    .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__hero-image-wrapper,
    .page-about__hero-content,
    .page-about__text-block,
    .page-about__image-block,
    .page-about__faq-list,
    .page-about__faq-item,
    .page-about__faq-question,
    .page-about__faq-answer,
    .page-about__cta-bottom,
    .page-about__text-content {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden !important; /* Prevent horizontal scroll */
    }

    .page-about__hero-section {
        padding-top: 10px !important; /* body already has padding-top */
    }

    .page-about__image-block--cta {
        padding: 0;
    }

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

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