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

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

.page-about__section-title {
    font-size: 2.5em;
    color: #F2FFF6; /* Text Main */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
}

.page-about__main-title {
    font-weight: bold;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: #F2FFF6; /* Text Main */
    max-width: 800px;
    margin: 0 auto 20px auto;
    text-align: center;
    font-size: clamp(2.2em, 4vw, 3.5em); /* H1 clamp for responsiveness */
}

.page-about__description {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    text-align: center;
    max-width: 800px;
    margin: 0 auto 30px auto;
}

/* Hero Section */
.page-about__hero-section {
    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;
    position: relative;
    overflow: hidden;
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-height: 600px; /* Limit height for hero image */
    overflow: hidden;
    margin-bottom: 40px;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover; /* Ensures image covers the area */
    object-position: center;
}

.page-about__hero-content {
    position: relative; /* Ensure content is above any background elements if needed */
    z-index: 2;
    padding: 0 20px;
}

.page-about__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    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: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, transform 0.2s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

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

.page-about__btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(42, 209, 111, 0.4);
}

.page-about__btn-secondary {
    background-color: transparent;
    color: #2AD16F;
    border: 2px solid #2AD16F; /* Border color from primary gradient start */
}

.page-about__btn-secondary:hover {
    transform: translateY(-2px);
    background-color: rgba(42, 209, 111, 0.1);
}

/* Content Layouts */
.page-about__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    margin-bottom: 40px;
}

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

.page-about__text-block {
    flex: 1;
    padding: 20px;
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-about__image-block {
    flex: 1;
    min-width: 300px; /* Ensure image block has a minimum width */
}

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

/* Why Choose Section */
.page-about__advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-about__advantage-card {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-about__advantage-card:hover {
    transform: translateY(-5px);
}

.page-about__advantage-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
}

.page-about__advantage-title {
    font-size: 1.5em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

.page-about__advantage-description {
    color: #A7D9B8; /* Text Secondary */
}

/* Products & Services Section */
.page-about__products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-about__product-card {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-about__product-card:hover {
    transform: translateY(-5px);
}

.page-about__product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-about__product-title {
    font-size: 1.4em;
    color: #F2FFF6; /* Text Main */
    padding: 15px 20px 5px;
}

.page-about__product-description {
    color: #A7D9B8; /* Text Secondary */
    padding: 0 20px 15px;
}

.page-about__btn-link {
    display: block;
    text-align: center;
    background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button color */
    color: #ffffff;
    padding: 12px 20px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 0 0 10px 10px;
    transition: background-color 0.3s ease;
}

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

/* Awards Section */
.page-about__awards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-about__award-card {
    background-color: #11271B; /* Card BG */
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.page-about__award-card:hover {
    transform: translateY(-5px);
}

.page-about__award-icon {
    width: 100px;
    height: 100px;
    margin-bottom: 20px;
    display: block;
    margin-left: auto;
    margin-right: auto;
    object-fit: contain;
}

.page-about__award-title {
    font-size: 1.5em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 10px;
}

.page-about__award-description {
    color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
.page-about__faq-list {
    max-width: 800px;
    margin: 0 auto;
}

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

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    cursor: pointer;
    font-size: 1.2em;
    font-weight: bold;
    color: #F2FFF6; /* Text Main */
    background-color: #11271B; /* Card BG */
    border-bottom: 1px solid #2E7A4E; /* Border color */
    list-style: none; /* For details/summary */
}

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

.page-about__faq-toggle {
    font-size: 1.5em;
    line-height: 1;
    transition: transform 0.3s ease;
    color: #2AD16F;
}

.page-about__faq-item[open] .page-about__faq-toggle {
    transform: rotate(45deg);
}

.page-about__faq-answer {
    padding: 0 25px 20px;
    color: #A7D9B8; /* Text Secondary */
    font-size: 1.1em;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out, padding 0.4s ease-out;
}

.page-about__faq-item[open] .page-about__faq-answer {
    max-height: 500px; /* Arbitrary large value for smooth transition */
    padding-top: 15px;
}

.page-about__dark-bg {
    background: #11271B;
    color: #F2FFF6;
}

/* General image responsiveness */
.page-about img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Mobile responsive styles */
@media (max-width: 768px) {
    .page-about__section {
        padding: 20px 15px;
    }

    .page-about__hero-section {
        padding-top: 10px !important; /* Small top padding for mobile */
        padding-bottom: 40px;
    }

    .page-about__hero-image-wrapper {
        max-height: 300px; /* Adjust hero image height for mobile */
        margin-bottom: 20px;
    }

    .page-about__hero-image {
        object-fit: contain; /* Ensure image is fully visible on mobile */
        aspect-ratio: unset;
        max-height: none;
    }

    .page-about__main-title {
        font-size: clamp(1.8em, 7vw, 2.5em);
        margin-bottom: 15px;
    }

    .page-about__description {
        font-size: 1em;
        margin-bottom: 20px;
    }

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

    .page-about__btn-primary,
    .page-about__btn-secondary,
    .page-about a[class*="button"],
    .page-about a[class*="btn"] {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .page-about__cta-buttons,
    .page-about__button-group,
    .page-about__btn-container {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        flex-wrap: wrap !important;
        gap: 10px;
        display: flex;
        flex-direction: column;
    }

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

    .page-about__content-wrapper {
        flex-direction: column;
        gap: 20px;
    }

    .page-about__text-block {
        padding: 15px;
    }

    .page-about__image-block {
        min-width: unset;
        width: 100%;
    }

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

    .page-about__advantages-grid,
    .page-about__products-grid,
    .page-about__awards-grid {
        grid-template-columns: 1fr;
    }

    .page-about__advantage-card,
    .page-about__product-card,
    .page-about__award-card {
        padding: 20px;
    }

    .page-about__advantage-icon,
    .page-about__award-icon {
        width: 80px;
        height: 80px;
        margin-bottom: 15px;
    }

    .page-about__product-image {
        height: 180px;
    }

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

    .page-about__faq-answer {
        padding: 0 20px 15px;
        font-size: 1em;
    }

    /* Ensure all content sections have proper padding on mobile */
    .page-about__section,
    .page-about__card,
    .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;
    }
}