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

/* Intelligent contrast for main content, assuming dark body background from shared.css */
.page-about__hero-section,
.page-about__section {
    background-color: #08160F;
    color: #F2FFF6;
}

.page-about__dark-section {
    background-color: #08160F; /* Background */
    color: #F2FFF6; /* Text Main */
}

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

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

/* Hero Section */
.page-about__hero-section {
    position: relative;
    display: flex;
    flex-direction: column; /* Enforce image on top, content below */
    align-items: center;
    padding: 10px 20px 60px; /* Small top padding, more bottom padding */
    overflow: hidden;
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 100%; /* Ensure it takes full width */
    overflow: hidden;
    box-sizing: border-box;
}

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

.page-about__hero-content {
    text-align: center;
    padding: 40px 20px;
    max-width: 900px;
    z-index: 1; /* Ensure content is above any decorative background if any */
}

.page-about__main-title {
    font-size: clamp(2em, 4vw, 3.5em); /* Responsive H1 font size */
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.page-about__intro-text {
    font-size: 1.2em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

.page-about__cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap; /* Allow wrapping on smaller screens */
}

.page-about__btn-primary,
.page-about__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%; /* Ensure button adapts */
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

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

.page-about__btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(87, 227, 141, 0.4); /* Glow color */
}

.page-about__btn-secondary {
    background-color: transparent;
    color: #57E38D; /* Glow */
    border: 2px solid #2E7A4E; /* Border */
}

.page-about__btn-secondary:hover {
    background-color: #2E7A4E; /* Border */
    color: #F2FFF6;
    transform: translateY(-3px);
}

.page-about__btn-large {
    padding: 18px 40px;
    font-size: 1.1em;
}

/* General Section Styling */
.page-about__section {
    padding: 60px 0;
    border-bottom: 1px solid #1E3A2A; /* Divider */
}

.page-about__section:last-of-type {
    border-bottom: none;
}

.page-about__section-title {
    font-size: 2.5em;
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 20px;
    font-weight: bold;
}

.page-about__section-description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
    margin-top: 30px;
}

.page-about__content-grid--reversed {
    flex-direction: row-reverse;
}

.page-about__text-block {
    flex: 1;
    color: #F2FFF6; /* Text Main */
}

.page-about__text-block p {
    margin-bottom: 15px;
    color: #F2FFF6; /* Text Main */
}

.page-about__sub-title {
    font-size: 1.8em;
    color: #57E38D; /* Glow */
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-about__image-block {
    flex: 1;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
}

.page-about__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.page-about__content-image-center {
    margin-top: 40px;
    flex: none; /* Do not make it flex item */
    width: 100%;
    display: flex;
    justify-content: center;
}

/* Core Values Section */
.page-about__values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-about__value-title {
    font-size: 1.5em;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
}

.page-about__value-text {
    color: #A7D9B8; /* Text Secondary */
}

/* Why Choose Us Section */
.page-about__feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.page-about__feature-title {
    font-size: 1.6em;
    color: #57E38D; /* Glow */
    margin-bottom: 15px;
}

.page-about__feature-text {
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 20px;
}

.page-about__read-more {
    color: #F2C14E; /* Gold */
    text-decoration: none;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.page-about__read-more:hover {
    color: #57E38D; /* Glow */
}

.page-about__arrow {
    transition: transform 0.3s ease;
}

.page-about__read-more:hover .page-about__arrow {
    transform: translateX(5px);
}

/* FAQ Section */
.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: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

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

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

.page-about__faq-qtext {
    color: #F2FFF6; /* Text Main */
}

.page-about__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    color: #F2C14E; /* Gold */
    margin-left: 15px;
}

.page-about__faq-item[open] .page-about__faq-toggle {
    color: #57E38D; /* Glow */
}

.page-about__faq-answer {
    padding: 0 25px 20px;
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
}

.page-about__faq-answer p {
    margin-bottom: 10px;
    color: #A7D9B8; /* Text Secondary */
}

.page-about__faq-link {
    color: #F2C14E; /* Gold */
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    margin-top: 10px;
}

.page-about__faq-link:hover {
    color: #57E38D; /* Glow */
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-about__content-grid {
        flex-direction: column;
    }
    .page-about__content-grid--reversed {
        flex-direction: column;
    }
    .page-about__hero-content {
        padding: 30px 15px;
    }
    .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__hero-section {
        padding: 10px 15px 40px;
    }

    .page-about__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em); /* Adjust H1 for mobile */
    }

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

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

    .page-about__btn-primary,
    .page-about__btn-secondary {
        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;
    }
    
    .page-about__section,
    .page-about__container,
    .page-about__value-card,
    .page-about__feature-card,
    .page-about__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }

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

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

    .page-about__image {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

    .page-about__image-block {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

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

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

/* Ensure no filter on images */
.page-about img {
    filter: none !important;
}

/* Ensure content area images meet min size requirements */
.page-about__content-area img,
.page-about__image-block img {
    min-width: 200px;
    min-height: 200px;
}