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

.page-about__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    overflow: hidden;
    background-color: #08160F; /* Ensure background matches body if image doesn't cover all */
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 1920px; /* Max width for large screens */
    margin: 0 auto;
    overflow: hidden;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.7); /* Slightly darken image for text contrast */
}

.page-about__hero-content {
    position: relative;
    z-index: 10;
    max-width: 900px;
    margin-top: 40px; /* Separates content from image */
}

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

.page-about__description {
    font-size: 1.1rem;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

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

.page-about__btn-primary,
.page-about__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    max-width: 100%; /* Ensure button fits container */
    box-sizing: border-box;
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Allow text wrapping */
    text-align: center;
}

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

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

.page-about__btn-secondary {
    background-color: transparent;
    color: #2AD16F;
    border: 2px solid #2AD16F;
}

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

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

.page-about__dark-section {
    background-color: #11271B; /* Card BG */
    color: #F2FFF6;
}

.page-about__light-bg {
    background-color: #0A4B2C; /* Deep Green for contrast, still dark */
    color: #F2FFF6;
}

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

.page-about__section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: #F2C14E; /* Gold */
    margin-bottom: 20px;
    font-weight: 700;
}

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

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

.page-about__text-block {
    flex: 1;
}

.page-about__image-block {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-about__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    object-fit: cover;
    min-width: 200px;
    min-height: 200px;
}

.page-about__sub-title {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #2AD16F; /* Button green */
    margin-top: 30px;
    margin-bottom: 15px;
    font-weight: 600;
}

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

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

.page-about__feature-card,
.page-about__product-card,
.page-about__commitment-item {
    background-color: #11271B; /* Card BG */
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #2E7A4E; /* Border */
}

.page-about__feature-card:hover,
.page-about__product-card:hover,
.page-about__commitment-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-about__feature-icon,
.page-about__product-image,
.page-about__commitment-icon {
    width: 100%;
    max-width: 400px; /* Adjust as needed for specific cards */
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    min-width: 200px;
    min-height: 200px;
}

.page-about__feature-title,
.page-about__product-title,
.page-about__commitment-title {
    font-size: 1.4rem;
    color: #F2C14E; /* Gold */
    margin-bottom: 15px;
    font-weight: 600;
}

.page-about__product-title a {
    color: #F2C14E; /* Gold */
    text-decoration: none;
}

.page-about__product-title a:hover {
    text-decoration: underline;
    color: #2AD16F;
}

.page-about__feature-card p,
.page-about__product-card p,
.page-about__commitment-item p {
    font-size: 0.95rem;
    color: #A7D9B8; /* Text Secondary */
}

.page-about__future-vision {
    display: flex;
    gap: 40px;
    text-align: left;
    align-items: center;
    margin-top: 40px;
}

/* FAQ Section */
.page-about__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

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

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #F2FFF6; /* Text Main */
    background-color: #0A4B2C; /* Deep Green */
    transition: background-color 0.3s ease;
    list-style: none; /* For details/summary */
}

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

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

.page-about__faq-toggle {
    font-size: 1.5rem;
    font-weight: bold;
    color: #F2C14E; /* Gold */
    margin-left: 15px;
}

.page-about__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: #A7D9B8; /* Text Secondary */
    background-color: #11271B; /* Card BG */
    border-top: 1px solid #2E7A4E; /* Divider */
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-about__content-grid,
    .page-about__future-vision {
        flex-direction: column;
    }

    .page-about__image-block {
        margin-top: 40px;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding: 40px 15px;
        padding-top: 10px;
    }

    .page-about__main-title {
        font-size: 2.2rem;
    }

    .page-about__description {
        font-size: 1rem;
    }

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

    .page-about__btn-primary,
    .page-about__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px;
        font-size: 0.95rem;
    }

    .page-about__section {
        padding: 50px 15px;
    }

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

    .page-about__section-intro {
        font-size: 0.95rem;
    }

    .page-about__sub-title {
        font-size: 1.3rem;
    }

    .page-about__text-block p {
        font-size: 0.9rem;
    }

    .page-about__feature-grid,
    .page-about__product-grid,
    .page-about__commitment-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .page-about__feature-card,
    .page-about__product-card,
    .page-about__commitment-item {
        padding: 25px;
    }

    .page-about__feature-icon,
    .page-about__product-image,
    .page-about__commitment-icon {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }

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

    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
    }
}