.page-about {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    background-color: #08160F; /* Overall background color as per custom palette */
    color: #F2FFF6; /* Main text color for the dark background */
}

/* Ensure padding-top for the first section is small, body handles header offset */
.page-about__hero-section {
    position: relative;
    padding-top: 10px; /* Small top padding as per instruction */
    padding-bottom: 60px;
    background: linear-gradient(180deg, #11A84E 0%, #0A4B2C 100%); /* Dark green gradient for hero */
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    overflow: hidden; /* To contain potential image overflow */
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: none; /* Ensure no CSS filter */
    min-width: 200px;
    min-height: 200px; /* Minimum size requirement */
}

.page-about__hero-content {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    color: #F2FFF6; /* Main text color */
    z-index: 1; /* Ensure content is above image if any layering issue */
}

.page-about__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Flexible font size for H1 */
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 15px;
    color: #F2FFF6; /* Main text color */
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5); /* Subtle shadow for readability */
}

.page-about__description {
    font-size: clamp(1rem, 2vw, 1.2rem);
    margin-bottom: 30px;
    color: #A7D9B8; /* Secondary text color */
}

.page-about__cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    width: 100%; /* For mobile responsiveness */
    max-width: 100%; /* For mobile responsiveness */
    box-sizing: border-box;
    overflow: hidden; /* For mobile responsiveness */
}

.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__btn-link {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    white-space: normal;
    word-wrap: break-word;
    max-width: 100%;
    box-sizing: border-box;
    text-align: center;
    min-width: 150px; /* Ensure buttons are not too small */
}

.page-about__btn-primary {
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    color: #ffffff;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-about__btn-secondary {
    background-color: transparent;
    color: #F2FFF6; /* Main text color */
    border: 2px solid #2E7A4E; /* Border color */
}

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

.page-about__btn-link {
    background-color: transparent;
    color: #57E38D; /* Glow color for links */
    border: 1px solid #2E7A4E;
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-about__btn-link:hover {
    background-color: #1E3A2A; /* Divider color as background on hover */
    color: #F2FFF6;
}

.page-about__section {
    padding: 60px 20px;
    text-align: center;
    background-color: #08160F; /* Default section background */
}

.page-about__dark-section {
    background-color: #11271B; /* Card BG for dark sections */
    color: #F2FFF6; /* Main text color */
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Added horizontal padding for content */
    box-sizing: border-box;
}

.page-about__section-title {
    font-size: clamp(1.8rem, 3vw, 2.8rem);
    font-weight: bold;
    margin-bottom: 30px;
    color: #F2FFF6; /* Main text color */
    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: #57E38D; /* Glow color */
    border-radius: 2px;
}

.page-about__text-block {
    font-size: 1.1em;
    margin-bottom: 20px;
    color: #A7D9B8; /* Secondary text color */
    text-align: justify;
}

.page-about__image-content {
    width: 100%;
    height: auto;
    max-width: 1000px;
    margin: 30px auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    filter: none; /* Ensure no CSS filter */
    min-width: 200px;
    min-height: 200px; /* Minimum size requirement */
}

/* Commitment Grid */
.page-about__commitment-grid,
.page-about__product-grid,
.page-about__team-members {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__card {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: left;
    color: #F2FFF6; /* Main text color */
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 250px; /* Ensure cards have some height */
}

.page-about__card-title {
    font-size: 1.4em;
    font-weight: bold;
    margin-bottom: 15px;
    color: #F2FFF6; /* Main text color */
}

.page-about__card-title a {
    color: #F2FFF6;
    text-decoration: none;
}

.page-about__card-title a:hover {
    color: #57E38D;
}

.page-about__card-text {
    font-size: 0.95em;
    color: #A7D9B8; /* Secondary text color */
    margin-bottom: 15px;
}

/* Product Cards */
.page-about__product-card {
    text-align: center;
    min-height: 350px; /* Adjust for image */
}

.page-about__product-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    filter: none; /* Ensure no CSS filter */
    min-width: 200px;
    min-height: 200px; /* Minimum size requirement */
}

/* Feature List */
.page-about__feature-list {
    list-style: none;
    padding: 0;
    margin-top: 40px;
    text-align: left;
}

.page-about__feature-item {
    background-color: #0A4B2C; /* Deep Green */
    border-left: 5px solid #57E38D; /* Glow color */
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.page-about__feature-title {
    font-size: 1.3em;
    font-weight: bold;
    margin-bottom: 10px;
    color: #F2FFF6; /* Main text color */
}

.page-about__feature-description {
    color: #A7D9B8; /* Secondary text color */
}

/* Team Members */
.page-about__team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px auto;
    border: 3px solid #57E38D; /* Glow color */
    filter: none; /* Ensure no CSS filter */
    min-width: 200px;
    min-height: 200px; /* Minimum size requirement, overriding smaller default */
}

.page-about__team-card {
    text-align: center;
}

.page-about__team-name {
    font-size: 1.2em;
    font-weight: bold;
    color: #F2FFF6; /* Main text color */
    margin-bottom: 5px;
}

.page-about__team-position {
    font-size: 0.9em;
    color: #A7D9B8; /* Secondary text color */
}

/* Achievements */
.page-about__achievement-list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
    text-align: left;
}

.page-about__achievement-item {
    background-color: #0A4B2C; /* Deep Green */
    padding: 15px 20px;
    margin-bottom: 10px;
    border-radius: 5px;
    color: #A7D9B8; /* Secondary text color */
    font-size: 1.1em;
    display: flex;
    align-items: center;
}

.page-about__achievement-item::before {
    content: '⭐'; /* Unicode star */
    margin-right: 10px;
    font-size: 1.2em;
    color: #F2C14E; /* Gold color */
}

/* Contact Methods */
.page-about__contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-about__contact-card {
    min-height: 200px;
}

/* FAQ */
.page-about__faq-list {
    margin-top: 40px;
    text-align: left;
}

.page-about__faq-item {
    background-color: #11271B; /* Card BG */
    border: 1px solid #2E7A4E; /* Border color */
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    color: #F2FFF6; /* Main text color */
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.1em;
    font-weight: bold;
    cursor: pointer;
    background-color: #1E3A2A; /* Divider color for question background */
    color: #F2FFF6; /* Main text color */
    user-select: none;
    list-style: none; /* For details/summary */
}

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

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

.page-about__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    margin-left: 10px;
    color: #57E38D; /* Glow color */
}

.page-about__faq-answer {
    padding: 0 20px 20px 20px;
    font-size: 0.95em;
    color: #A7D9B8; /* Secondary text color */
    max-height: 0; /* For JS toggle */
    overflow: hidden; /* For JS toggle */
    transition: max-height 0.3s ease-out;
    text-align: justify;
}

.page-about__faq-item[open] .page-about__faq-answer {
    max-height: 500px; /* Adjust as needed */
}

/* Specific styling for details tag */
.page-about__faq-item[open] > summary .page-about__faq-toggle {
    content: '−';
}
.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 */
}

/* Center CTA buttons */
.page-about__cta-buttons--center {
    margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-about__hero-content {
        padding: 15px;
    }
    .page-about__main-title {
        font-size: clamp(2rem, 4.5vw, 3rem);
    }
    .page-about__description {
        font-size: clamp(0.95rem, 2.2vw, 1.1rem);
    }
    .page-about__section-title {
        font-size: clamp(1.6rem, 3.5vw, 2.5rem);
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding-bottom: 40px;
    }
    .page-about__section {
        padding: 40px 15px;
    }
    .page-about__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }
    .page-about__description {
        font-size: clamp(0.9rem, 2.5vw, 1rem);
    }
    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-about__btn-primary,
    .page-about__btn-secondary,
    .page-about__btn-link {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-about__commitment-grid,
    .page-about__product-grid,
    .page-about__team-members,
    .page-about__contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Mobile image responsiveness */
    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
        filter: none !important; /* Ensure no CSS filter */
    }
    
    .page-about__hero-image-wrapper,
    .page-about__section,
    .page-about__card,
    .page-about__container,
    .page-about__product-card,
    .page-about__team-card,
    .page-about__contact-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 content does not overflow */
    }

    /* Video responsiveness - if any */
    .page-about video,
    .page-about__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-about__video-section,
    .page-about__video-container,
    .page-about__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-about__video-section {
        padding-top: 10px !important; /* Small top padding for video section */
    }
}