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

/* General styles for the page, assuming a dark body background from shared.css */
.page-about {
    background-color: var(--background); /* From shared.css, should be #08160F */
    color: var(--text-secondary); /* Default text color for paragraphs */
    font-family: 'Arial', sans-serif; /* Example font */
    line-height: 1.6;
    padding-bottom: 60px; /* Some spacing above footer */
}

/* Typography */
.page-about h1, .page-about h2, .page-about h3, .page-about h4, .page-about h5, .page-about h6 {
    color: var(--text-main); /* Main titles are light */
    font-weight: bold;
    margin-bottom: 20px;
}

.page-about h1 {
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-align: center;
    max-width: 800px; /* Constraint for H1 */
    margin-left: auto;
    margin-right: auto;
    font-size: clamp(2.2em, 4vw, 3.2em); /* Responsive H1 font size */
}

.page-about h2 {
    font-size: 2.2em;
    text-align: center;
    margin-top: 40px;
    margin-bottom: 30px;
    color: var(--gold); /* Gold for section titles */
}

.page-about h3 {
    font-size: 1.8em;
    margin-top: 30px;
    margin-bottom: 20px;
    color: var(--text-main); /* Light text for sub-titles */
}

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

.page-about ul {
    list-style: disc;
    padding-left: 25px;
    margin-bottom: 15px;
}

.page-about ul li {
    margin-bottom: 8px;
    color: var(--text-secondary); /* Secondary text color for list items */
}

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

/* Sections & Containers */
.page-about__section {
    padding: 40px 20px;
    max-width: 1200px;
    margin: 0 auto;
    box-sizing: border-box;
}

.page-about__hero-section {
    position: relative;
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    background: var(--deep-green); /* Example background for hero, or image */
    padding-top: 10px; /* Small decorative top margin */
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 1200px; /* Adjust as needed */
    margin-bottom: 30px;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
}

.page-about__hero-content {
    max-width: 900px;
    z-index: 1;
}

.page-about__intro-text {
    font-size: 1.1em;
    color: var(--text-main);
}

.page-about__cta-button {
    display: inline-block;
    padding: 15px 30px;
    margin-top: 30px;
    border-radius: 8px;
    background: var(--button-gradient); /* linear-gradient(180deg, #2AD16F 0%, #13994A 100%) */
    color: #ffffff; /* White text for buttons */
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
}

.page-about__cta-button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.page-about__small-button {
    font-size: 0.9em;
    padding: 10px 20px;
    margin-top: 20px;
}

.page-about__large-cta {
    padding: 18px 35px;
    font-size: 1.2em;
}

.page-about__content-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 30px auto;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

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

.page-about__card {
    background-color: var(--card-bg); /* #11271B */
    color: var(--text-secondary); /* #A7D9B8 */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    border: 1px solid var(--border); /* #2E7A4E */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.page-about__card-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency, minimum 200px */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-about__card-title {
    font-size: 1.4em;
    color: var(--text-main); /* #F2FFF6 */
    margin-bottom: 15px;
}

.page-about__card-text {
    font-size: 0.95em;
    margin-bottom: 20px;
}

.page-about__faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

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

.page-about__faq-item summary {
    list-style: none; /* Hide default marker */
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: bold;
    font-size: 1.1em;
    color: var(--text-main); /* #F2FFF6 */
    background-color: var(--deep-green); /* #0A4B2C */
}

.page-about__faq-item summary::-webkit-details-marker {
    display: none; /* Hide default marker for webkit browsers */
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.page-about__faq-qtext {
    flex-grow: 1;
}

.page-about__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
    color: var(--gold);
}

.page-about__faq-item[open] .page-about__faq-toggle {
    transform: rotate(45deg); /* Rotate plus to cross */
}

.page-about__faq-answer {
    padding: 20px 25px;
    font-size: 0.95em;
    color: var(--text-secondary); /* #A7D9B8 */
    border-top: 1px solid var(--divider); /* #1E3A2A */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-about {
        font-size: 16px;
        line-height: 1.6;
    }

    .page-about h1 {
        font-size: 2em;
        max-width: 90%;
    }

    .page-about h2 {
        font-size: 1.8em;
    }

    .page-about h3 {
        font-size: 1.4em;
    }

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

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

    .page-about__card-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .page-about__card {
        padding: 20px;
    }

    /* Mobile image responsiveness */
    .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-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Mobile button responsiveness */
    .page-about__cta-button,
    .page-about__btn-primary,
    .page-about__btn-secondary,
    .page-about a[class*="button"],
    .page-about a[class*="btn"] {
        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;
        text-align: center; /* Center button text on mobile */
    }

    .page-about__cta-buttons,
    .page-about__button-group,
    .page-about__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        justify-content: center; /* Center buttons if wrapped */
    }

    .page-about__cta-buttons {
        display: flex;
        flex-direction: column; /* Stack buttons vertically on mobile */
        align-items: center;
    }
}