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

.page-about {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: var(--color-background);
    color: var(--color-text-main);
}

.page-about__section {
    padding: 60px 0;
}

.page-about__section-title {
    font-size: 2.8em;
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
}

.page-about__section-description {
    font-size: 1.1em;
    color: var(--color-text-secondary);
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

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

.page-about__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small decorative top margin, body handles header offset */
    padding-bottom: 60px;
    background-color: var(--color-deep-green);
}

.page-about__hero-image {
    width: 100%;
    height: 675px; /* Adjust height based on 16:9 ratio for 1200px width */
    object-fit: cover;
    display: block;
    filter: brightness(0.7); /* Slightly dim image for text readability */
}

.page-about__hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    max-width: 900px;
    padding: 20px;
    box-sizing: border-box;
}

.page-about__main-title {
    font-size: clamp(2.5em, 5vw, 3.5em);
    color: var(--color-gold);
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.page-about__hero-description {
    font-size: 1.2em;
    color: var(--color-text-main);
    margin-bottom: 30px;
}

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

.page-about__btn-primary {
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: var(--color-text-main);
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
}

.page-about__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

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

.page-about__card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.page-about__card-title {
    font-size: 1.6em;
    color: var(--color-gold);
    font-weight: 600;
}

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

.page-about__list-features {
    list-style: none;
    padding: 0;
    margin: 40px auto;
    max-width: 900px;
}

.page-about__list-features li {
    background-color: var(--color-card-bg);
    border-left: 5px solid var(--color-primary);
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: var(--color-text-main);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-about__list-features li strong {
    color: var(--color-gold);
}

.page-about__image-full-width {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.page-about__image-responsive {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.page-about__margin-top {
    margin-top: 40px;
}

.page-about__dark-section {
    background-color: var(--color-deep-green);
}

.page-about__image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-about__text-center {
    text-align: center;
}

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

.page-about__faq-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

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

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-weight: 600;
    color: var(--color-text-main);
    background-color: var(--color-deep-green);
    transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
    background-color: var(--color-border);
}

.page-about__faq-qtext {
    flex-grow: 1;
    color: var(--color-gold);
}

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

.page-about__faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    color: var(--color-text-secondary);
}

.page-about__faq-item.active .page-about__faq-answer {
    max-height: 500px; /* Adjust as needed */
    padding: 15px 25px 25px;
}

.page-about__faq-item[open] .page-about__faq-answer {
    max-height: none; /* Let browser handle height */
    padding: 15px 25px 25px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-about__section-title {
        font-size: 2.2em;
    }
    .page-about__hero-content {
        max-width: 700px;
    }
    .page-about__main-title {
        font-size: clamp(2em, 4vw, 3em);
    }
    .page-about__grid-two-columns {
        grid-template-columns: 1fr;
    }
    .page-about__grid-two-columns .page-about__image-wrapper {
        order: -1; /* Image appears above text on smaller screens */
    }
}

@media (max-width: 768px) {
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__section-title {
        font-size: 1.8em;
    }
    .page-about__hero-image {
        height: 400px;
    }
    .page-about__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }
    .page-about__hero-description {
        font-size: 1em;
    }
    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-about__btn-primary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 15px;
    }

    .page-about__card {
        padding: 20px;
    }
    .page-about__card-title {
        font-size: 1.4em;
    }
    .page-about__grid-features {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-about__container {
        padding: 0 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Images */
    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-about__image-full-width, .page-about__image-responsive {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }

    .page-about__hero-section {
      padding-bottom: 40px;
      padding-top: 10px !important;
    }

    .page-about__hero-content {
      position: static;
      transform: none;
      margin-top: 20px;
    }

    .page-about__hero-image {
      position: static;
      width: 100%;
      height: 250px;
    }
    .page-about__hero-section .page-about__main-title {
        text-align: center;
    }
    .page-about__hero-section .page-about__hero-description {
        text-align: center;
    }
    .page-about__hero-section {
        flex-direction: column;
    }

}

@media (max-width: 480px) {
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__hero-image {
        height: 200px;
    }
    .page-about__main-title {
        font-size: clamp(1.5em, 8vw, 2em);
    }
    .page-about__hero-description {
        font-size: 0.9em;
    }
    .page-about__faq-question {
        padding: 15px 18px;
    }
    .page-about__faq-answer {
        padding: 0 18px;
    }
    .page-about__faq-item.active .page-about__faq-answer,
    .page-about__faq-item[open] .page-about__faq-answer {
        padding: 10px 18px 18px;
    }
}