: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-color: #2E7A4E;
    --glow-color: #57E38D;
    --gold-color: #F2C14E;
    --divider-color: #1E3A2A;
    --deep-green-color: #0A4B2C;
}

.page-about {
    font-family: Arial, sans-serif;
    color: var(--text-main); /* Default text color for the page */
    background-color: var(--background); /* Body background handled by shared.css */
    line-height: 1.6;
}

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

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

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

.page-about__container--two-col-reverse {
    display: flex;
    flex-direction: row-reverse;
    gap: 40px;
    align-items: center;
}

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

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

.page-about__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Image above text */
    align-items: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    overflow: hidden;
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

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

.page-about__hero-content-wrapper {
    width: 100%;
    padding: 40px 0;
    text-align: center;
}

.page-about__main-title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    color: var(--text-main);
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-about__heading {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--text-main);
    font-weight: bold;
    margin-bottom: 30px;
}

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

.page-about__sub-heading {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    color: var(--text-main);
    font-weight: 600;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-about__content-block {
    flex: 1;
}

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

.page-about__image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.page-about__image--responsive {
    width: 100%;
}

.page-about__list {
    list-style: disc inside;
    margin-left: 20px;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.page-about__list li {
    margin-bottom: 10px;
    color: var(--text-main);
}

.page-about__inline-link {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-about__inline-link:hover {
    color: var(--glow-color);
    text-decoration: underline;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
}

.page-about__btn-primary {
    background: var(--button-gradient);
    color: #ffffff;
    border: none;
}

.page-about__btn-primary:hover {
    box-shadow: 0 0 15px var(--glow-color);
    transform: translateY(-2px);
}

.page-about__btn-secondary {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
}

.page-about__btn-secondary:hover {
    background-color: var(--secondary-color);
    color: #ffffff;
    border-color: var(--secondary-color);
    transform: translateY(-2px);
}

.page-about__btn-link {
    display: inline-block;
    margin-top: 15px;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-about__btn-link:hover {
    text-decoration: underline;
    color: var(--glow-color);
}

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

.page-about__feature-card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.page-about__feature-image {
    width: 100%;
    max-width: 200px;
    height: auto;
    margin-bottom: 20px;
    border-radius: 8px;
}

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

.page-about__feature-text {
    color: var(--text-secondary);
    font-size: 0.95rem;
    flex-grow: 1;
}

.page-about__content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.page-about__faq-section {
    margin-top: 60px;
}

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

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

.page-about__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    cursor: pointer;
    list-style: none; /* Hide default marker */
}

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

.page-about__faq-question {
    font-size: 1.1rem;
    color: var(--text-main);
    font-weight: 600;
    flex-grow: 1;
}

.page-about__faq-toggle {
    font-size: 1.5rem;
    color: var(--secondary-color);
    font-weight: bold;
    margin-left: 20px;
}

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

/* Responsive Styles */
@media (max-width: 992px) {
    .page-about__container--two-col,
    .page-about__container--two-col-reverse {
        flex-direction: column;
        text-align: center;
    }

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

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

    .page-about__image {
        max-width: 80%;
    }
}

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

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

    .page-about__hero-section {
        padding-bottom: 40px;
    }

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

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

    .page-about__heading {
        font-size: clamp(1.6rem, 7vw, 2.2rem);
    }

    .page-about__sub-heading {
        font-size: clamp(1.2rem, 5vw, 1.8rem);
    }

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

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

    /* Images responsive */
    .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-wrapper,
    .page-about__features-grid,
    .page-about__content-grid,
    .page-about__faq-section,
    .page-about__faq-list,
    .page-about__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-about__hero-section {
        padding-top: 10px !important; /* Body handles header offset */
    }

    .page-about__feature-image {
        max-width: 150px;
    }

    .page-about__faq-item summary {
        padding: 15px;
    }

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