.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #F2FFF6; /* Text Main */
    background-color: #08160F; /* Background */
}

/* Hero Section */
.page-about__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-top: 10px; /* Small top padding, body handles header offset */
    padding-bottom: 60px;
    text-align: center;
    background: linear-gradient(180deg, #08160F 0%, #11271B 100%); /* Dark background blend */
    overflow: hidden;
}

.page-about__hero-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    margin-top: 30px;
}

.page-about__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
    z-index: 1;
}

.page-about__main-title {
    font-size: clamp(2em, 5vw, 3.5em); /* Responsive font size */
    font-weight: 700;
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__hero-description {
    font-size: 1.2em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1em;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.page-about__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #F2FFF6; /* Text Main */
    border: none;
}

.page-about__btn-primary:hover {
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
    transform: translateY(-2px);
}

.page-about__btn-secondary {
    background: transparent;
    color: #2AD16F; /* A lighter green from the gradient */
    border: 2px solid #2AD16F;
}

.page-about__btn-secondary:hover {
    background: #2AD16F;
    color: #08160F;
    transform: translateY(-2px);
}

/* General Sections */
.page-about__section-title {
    font-size: 2.5em;
    font-weight: 700;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    padding-top: 40px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.4);
}

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

.page-about__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #F2FFF6; /* Text Main */
}

.page-about__text-block strong {
    color: #F2C14E; /* Gold */
}

.page-about__text-secondary {
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-bottom: 30px;
}

/* Intro Section */
.page-about__intro-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
}

/* Mission & Vision Section */
.page-about__mission-vision-section {
    padding: 60px 0;
    background-color: #11271B; /* Card BG */
}

.page-about__grid-two-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.page-about__card {
    background-color: #0A4B2C; /* Deep Green, slightly lighter than background */
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid #2E7A4E; /* Border */
}

.page-about__card-title {
    font-size: 1.8em;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-about__card-text {
    font-size: 1em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

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

/* Core Values Section */
.page-about__values-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
}

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

.page-about__value-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
}

.page-about__value-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
    object-fit: contain;
    min-width: 80px; /* Enforce minimum size for content icons */
    min-height: 80px;
}

.page-about__value-title {
    font-size: 1.5em;
    color: #2AD16F; /* Green from gradient */
    margin-bottom: 10px;
    font-weight: 600;
}

.page-about__value-description {
    font-size: 0.95em;
    color: #A7D9B8; /* Text Secondary */
}

/* Why Choose Section */
.page-about__why-choose-section {
    padding: 60px 0;
    background-color: #0A4B2C; /* Deep Green */
}

.page-about__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-about__feature-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
}

.page-about__feature-title {
    font-size: 1.6em;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
    font-weight: 600;
}

.page-about__feature-description {
    font-size: 1em;
    color: #F2FFF6; /* Text Main */
}

/* Journey Section */
.page-about__journey-section {
    padding: 60px 0;
    background-color: #11271B; /* Card BG */
}

.page-about__timeline {
    position: relative;
    max-width: 800px;
    margin: 60px auto 0;
    padding: 0 20px;
}

.page-about__timeline::before {
    content: '';
    position: absolute;
    width: 4px;
    background-color: #2AD16F; /* Green */
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -2px;
    border-radius: 2px;
}

.page-about__timeline-item {
    padding: 20px 0;
    position: relative;
    width: 50%;
}

.page-about__timeline-item:nth-child(odd) {
    left: 0;
    padding-right: 40px;
    text-align: right;
}

.page-about__timeline-item:nth-child(even) {
    left: 50%;
    padding-left: 40px;
    text-align: left;
}

.page-about__timeline-item::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    right: -8px;
    background-color: #F2C14E; /* Gold */
    border: 2px solid #0A4B2C; /* Deep Green */
    top: 24px;
    border-radius: 50%;
    z-index: 1;
}

.page-about__timeline-item:nth-child(even)::after {
    left: -8px;
}

.page-about__timeline-year {
    font-size: 1.8em;
    font-weight: 700;
    color: #F2C14E; /* Gold */
    margin-bottom: 10px;
}

.page-about__timeline-description {
    font-size: 1em;
    color: #F2FFF6; /* Text Main */
}

.page-about__journey-image {
    width: 100%;
    max-width: 800px;
    height: auto;
    display: block;
    margin: 60px auto 0;
    border-radius: 12px;
    object-fit: cover;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

/* Responsibility Section */
.page-about__responsibility-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
}

.page-about__responsibility-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-about__responsibility-item {
    background-color: #11271B; /* Card BG */
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: 1px solid #2E7A4E; /* Border */
    text-align: center;
}

.page-about__responsibility-title {
    font-size: 1.6em;
    color: #2AD16F; /* Green */
    margin-bottom: 10px;
    font-weight: 600;
}

.page-about__responsibility-description {
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
}

/* CTA Bottom Section */
.page-about__cta-bottom-section {
    padding: 80px 0;
    background-color: #11271B; /* Card BG */
    text-align: center;
}

.page-about__flex-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* FAQ Section */
.page-about__faq-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
}

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

.page-about__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: 600;
    color: #F2C14E; /* Gold */
    background-color: #0A4B2C; /* Deep Green */
    transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
    background-color: #13994A; /* Darker green */
}

.page-about__faq-item[open] .page-about__faq-question {
    background-color: #13994A; /* Darker green when open */
}

.page-about__faq-qtext {
    flex-grow: 1;
    margin-right: 15px;
}

.page-about__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #F2FFF6; /* Text Main */
}

.page-about__faq-answer {
    padding: 20px 25px;
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
    border-top: 1px solid #2E7A4E; /* Border */
}

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

/* Details element specific styling */
.page-about__faq-item > summary {
    list-style: none; /* Remove default marker */
}
.page-about__faq-item > summary::-webkit-details-marker {
    display: none; /* Remove default marker for Webkit */
}

/* Ensure no small images are used, and no filter */
.page-about img {
    min-width: 200px;
    min-height: 200px;
    filter: none !important;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__grid-two-cols {
        grid-template-columns: 1fr;
    }

    .page-about__timeline::before {
        left: 20px; /* Adjust timeline line position */
    }

    .page-about__timeline-item {
        width: 100%;
        padding-left: 60px;
        text-align: left;
    }

    .page-about__timeline-item:nth-child(odd) {
        padding-right: 20px; /* Reset padding for odd items */
        left: 0;
    }

    .page-about__timeline-item::after,
    .page-about__timeline-item:nth-child(even)::after {
        left: 12px;
        right: auto;
    }
}

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

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

    .page-about__hero-description {
        font-size: 1em;
    }

    .page-about__section-title {
        font-size: 2em;
        margin-bottom: 30px;
    }

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

    .page-about__btn-primary,
    .page-about__btn-secondary {
        width: 100% !important;
        max-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__container,
    .page-about__hero-content,
    .page-about__faq-list {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    /* Images responsiveness */
    .page-about img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        box-sizing: border-box !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-about__card-image,
    .page-about__value-icon,
    .page-about__journey-image {
        max-width: 100% !important;
        height: auto !important;
    }

    .page-about__hero-section,
    .page-about__intro-section,
    .page-about__mission-vision-section,
    .page-about__values-section,
    .page-about__why-choose-section,
    .page-about__journey-section,
    .page-about__responsibility-section,
    .page-about__cta-bottom-section,
    .page-about__faq-section {
        padding: 40px 0;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow-x: hidden !important;
    }

    .page-about__card,
    .page-about__value-item,
    .page-about__feature-item,
    .page-about__responsibility-item {
        padding: 20px;
    }

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

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