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

/* Base styles for the page-about scope */
.page-about {
    font-family: Arial, sans-serif;
    color: var(--text-main);
    background-color: var(--bg-main);
    line-height: 1.6;
}

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

.page-about__section-title {
    font-size: 2.5em;
    color: var(--text-main);
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-gold);
    border-radius: 2px;
}

.page-about__sub-title {
    font-size: 1.8em;
    color: var(--color-secondary);
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.page-about__cta-button {
    display: inline-block;
    background: var(--gradient-button);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    box-sizing: border-box;
}

.page-about__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 15px rgba(34, 199, 104, 0.4);
}

/* Hero Section */
.page-about__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-bottom: 60px;
    padding-top: 10px;
    background-color: var(--bg-main);
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

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

.page-about__hero-content {
    text-align: center;
    max-width: 900px;
    padding: 0 20px;
}

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

/* Overview Section */
.page-about__overview-section {
    padding: 80px 0;
    background-color: var(--bg-card);
}

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

.page-about__overview-text {
    flex: 1;
}

.page-about__overview-image-wrapper {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

/* Why Choose Section */
.page-about__why-choose-section {
    padding: 80px 0;
    background-color: var(--bg-main);
}

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

.page-about__feature-card {
    background-color: var(--bg-card);
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-about__card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

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

.page-about__feature-card p {
    color: var(--text-secondary);
}

.page-about__cta-wrapper {
    text-align: center;
    margin-top: 60px;
}

/* Team Section */
.page-about__team-section {
    padding: 80px 0;
    background-color: var(--bg-card);
}

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

.page-about__team-image {
    flex: 1;
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

.page-about__team-text {
    flex: 1;
}

.page-about__team-text p {
    color: var(--text-secondary);
}

/* Responsibility Section */
.page-about__responsibility-section {
    padding: 80px 0;
    background-color: var(--bg-main);
}

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

.page-about__responsibility-text {
    flex: 1;
}

.page-about__responsibility-image-wrapper {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.page-about__responsibility-text p {
    color: var(--text-secondary);
}

/* Future Section */
.page-about__future-section {
    padding: 80px 0;
    background-color: var(--bg-card);
}

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

.page-about__future-image-wrapper {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}

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

.page-about__future-text {
    flex: 1;
}

.page-about__future-text p {
    color: var(--text-secondary);
}

/* FAQ Section */
.page-about__faq-section {
    padding: 80px 0;
    background-color: var(--bg-main);
}

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

.page-about__faq-item {
    background-color: var(--bg-card);
    margin-bottom: 15px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-about__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.2em;
    font-weight: bold;
    color: var(--text-main);
    cursor: pointer;
    list-style: none;
    background-color: var(--color-deep-green);
    border-bottom: 1px solid var(--border-color);
}

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

.page-about__faq-item summary:hover {
    background-color: var(--color-primary);
}

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

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

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

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

/* CTA Bottom Section */
.page-about__cta-bottom-section {
    padding: 80px 0;
    background-color: var(--bg-card);
    text-align: center;
}

.page-about__cta-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

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

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-about__overview-grid,
    .page-about__team-content,
    .page-about__responsibility-grid,
    .page-about__future-content {
        flex-direction: column;
        text-align: center;
    }

    .page-about__overview-image-wrapper,
    .page-about__team-image,
    .page-about__responsibility-image-wrapper,
    .page-about__future-image-wrapper {
        margin-top: 30px;
        max-width: 80%;
    }

    .page-about__team-image {
        order: -1; /* Image first on mobile */
    }

    .page-about__responsibility-grid {
        flex-direction: column-reverse; /* Image first for this section too */
    }

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

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

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

    .page-about__container {
        padding-left: 15px !important;
        padding-right: 15px !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

    .page-about__hero-section,
    .page-about__overview-section,
    .page-about__why-choose-section,
    .page-about__team-section,
    .page-about__responsibility-section,
    .page-about__future-section,
    .page-about__faq-section,
    .page-about__cta-bottom-section {
        padding: 40px 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
    }

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

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

    .page-about__intro-text {
        font-size: 1em;
    }

    .page-about__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding: 12px 20px !important;
        font-size: 1em !important;
    }

    .page-about__hero-image,
    .page-about__overview-image,
    .page-about__card-image,
    .page-about__team-image,
    .page-about__responsibility-image,
    .page-about__future-image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-about__hero-image-wrapper,
    .page-about__overview-image-wrapper,
    .page-about__responsibility-image-wrapper,
    .page-about__future-image-wrapper,
    .page-about__team-image {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: 0 !important;
        margin-right: 0 !important;
    }

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

    .page-about__feature-card {
        padding: 20px !important;
    }

    .page-about__faq-item summary {
        font-size: 1.1em !important;
        padding: 15px 20px !important;
    }

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

/* Color Contrast Fixes (as per smart contrast guidelines) */
.page-about p, .page-about li {
    color: var(--text-secondary);
}

.page-about__dark-section p, .page-about__dark-section li {
    color: var(--text-secondary);
}

.page-about__overview-text p, .page-about__team-text p, .page-about__responsibility-text p, .page-about__future-text p {
    color: var(--text-secondary);
}

.page-about__faq-answer p {
    color: var(--text-secondary);
}