:root {
    --primary-color: #11A84E;
    --secondary-color: #22C768;
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --card-bg: #11271B;
    --background-color: #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);
    background-color: var(--background-color);
    line-height: 1.6;
}

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

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

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

.page-about__section-title--dark {
    color: var(--deep-green-color);
}

.page-about__sub-title {
    font-size: 1.8em;
    font-weight: 600;
    color: var(--text-main);
    margin-top: 30px;
    margin-bottom: 15px;
    text-align: center;
}

.page-about__sub-title--dark {
    color: var(--deep-green-color);
}

.page-about__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    text-align: justify;
    color: var(--text-secondary);
}

.page-about__text-block--dark {
    color: #333333;
}

/* Hero Section */
.page-about__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 0;
    padding-top: 10px; /* Small top padding, body handles --header-offset */
    text-align: center;
    overflow: hidden;
}

.page-about__hero-image-wrapper {
    width: 100%;
    height: auto;
    margin-bottom: 30px;
}

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

.page-about__hero-content {
    position: relative;
    z-index: 1;
    padding-top: 20px;
}

.page-about__main-title {
    font-size: 3em;
    font-weight: 800;
    color: var(--gold-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.page-about__description {
    font-size: 1.2em;
    color: var(--text-main);
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Buttons */
.page-about__btn-primary {
    display: inline-block;
    background: var(--button-gradient);
    color: var(--text-main);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
    cursor: pointer;
}

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

/* Intro Section */
.page-about__intro-section {
    background-color: var(--background-color);
    color: var(--text-main);
}

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

.page-about__card {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border-color);
    text-align: center;
    color: var(--text-main);
}

.page-about__card-title {
    font-size: 1.5em;
    font-weight: bold;
    color: var(--gold-color);
    margin-bottom: 15px;
}

.page-about__card-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin-top: 20px;
}

/* Why Choose Section */
.page-about__why-choose-section {
    background-color: #ffffff;
    color: #333333;
}

.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: #f9f9f9;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #e0e0e0;
    color: #333333;
}

.page-about__feature-title {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--deep-green-color);
    margin-bottom: 10px;
}

.page-about__feature-card a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-about__feature-card a:hover {
    text-decoration: underline;
}

/* Commitment Section */
.page-about__commitment-section {
    background-color: var(--deep-green-color);
    color: var(--text-main);
}

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

.page-about__commitment-section .page-about__card {
    background-color: var(--card-bg);
}

.page-about__commitment-section .page-about__card-title {
    color: var(--gold-color);
}

/* Team Section */
.page-about__team-section {
    background-color: #ffffff;
    color: #333333;
}

.page-about__team-image-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 40px auto;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

/* Future Section */
.page-about__future-section {
    background-color: var(--background-color);
    color: var(--text-main);
}

/* FAQ Section */
.page-about__faq-section {
    background-color: #ffffff;
    color: #333333;
}

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

.page-about__faq-item {
    background-color: #f0f0f0;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #333333;
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    font-size: 1.2em;
    font-weight: 600;
    cursor: pointer;
    background-color: #e8e8e8;
    color: var(--deep-green-color);
    user-select: none;
}

.page-about__faq-question::-webkit-details-marker, /* Hide default marker for Webkit */
.page-about__faq-question::marker { /* Hide default marker for Firefox */
    display: none;
}

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

.page-about__faq-item[open] .page-about__faq-toggle {
    transform: rotate(45deg);
}

.page-about__faq-answer {
    padding: 15px 25px 25px 25px;
    font-size: 1.05em;
    color: #555555;
    border-top: 1px solid #e0e0e0;
}

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

/* CTA Section */
.page-about__cta-section {
    background-color: var(--background-color);
    color: var(--text-main);
    text-align: center;
}

.page-about__cta-content {
    padding: 40px 20px;
}

.page-about__cta-content .page-about__section-title {
    color: var(--gold-color);
}

.page-about__cta-content .page-about__description {
    font-size: 1.1em;
    margin-bottom: 30px;
}

/* Links within content */
.page-about a {
    color: var(--primary-color);
    text-decoration: none;
}

.page-about a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-about__main-title {
        font-size: 2.5em;
    }
    .page-about__section-title {
        font-size: 2em;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding: 40px 0;
        padding-top: 10px !important;
    }
    .page-about__main-title {
        font-size: 2em;
        padding: 0 15px;
    }
    .page-about__description {
        font-size: 1em;
        padding: 0 15px;
    }
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__section-title {
        font-size: 1.8em;
        padding: 0 15px;
    }
    .page-about__text-block {
        padding: 0 15px;
        font-size: 1em;
    }
    .page-about__sub-title {
        font-size: 1.5em;
        padding: 0 15px;
    }

    /* Images responsive */
    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-about__hero-image-wrapper,
    .page-about__team-image-wrapper,
    .page-about__card,
    .page-about__feature-card,
    .page-about__faq-item,
    .page-about__container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }

    /* Buttons responsive */
    .page-about__btn-primary,
    .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;
    }
    .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;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

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

@media (max-width: 480px) {
    .page-about__main-title {
        font-size: 1.8em;
    }
    .page-about__section-title {
        font-size: 1.5em;
    }
    .page-about__btn-primary {
        font-size: 1em;
        padding: 12px 20px;
    }
}