.page-about {
    color: #F2FFF6; /* Text Main */
    background-color: transparent; /* Body will handle the main background color */
    font-family: Arial, sans-serif;
    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: 20px;
    overflow: hidden;
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-height: 700px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    object-position: center;
}

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

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

.page-about__subtitle {
    font-size: 1.1em;
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__btn-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1em;
    transition: all 0.3s ease;
    cursor: pointer;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    text-align: center;
}

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

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

.page-about__btn-secondary {
    background: #11271B; /* Card B G */
    color: #57E38D; /* Glow */
    border: 2px solid #2E7A4E; /* Border */
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-about__btn-secondary:hover {
    background: #2E7A4E; /* Border */
    color: #F2FFF6; /* Text Main */
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.page-about__btn-link {
    background: transparent;
    color: #57E38D; /* Glow */
    border: 1px solid #2E7A4E; /* Border */
    padding: 8px 15px;
    border-radius: 5px;
    font-size: 0.9em;
    margin-top: 10px;
}

.page-about__btn-link:hover {
    color: #F2FFF6;
    background-color: #22C768; /* Auxiliary color */
    border-color: #22C768;
}

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

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

.page-about__content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 25px;
    align-items: center;
}

.page-about__text-block {
    font-size: 1.05em;
    line-height: 1.7;
    text-align: justify;
    max-width: 900px;
    margin: 0 auto;
    color: #F2FFF6; /* Text Main */
}

.page-about__image-content {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    margin: 20px auto;
    max-width: 900px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
}

.page-about__feature-list,
.page-about__responsibility-list,
.page-about__vision-list {
    list-style: none;
    padding: 0;
    margin: 20px auto;
    max-width: 900px;
}

.page-about__feature-item,
.page-about__responsibility-item,
.page-about__vision-item {
    background-color: #11271B; /* Card B G */
    border: 1px solid #2E7A4E; /* Border */
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    color: #F2FFF6; /* Text Main */
}

.page-about__feature-item strong,
.page-about__responsibility-item strong,
.page-about__vision-item strong {
    color: #57E38D; /* Glow */
}

.page-about__product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__product-card {
    background-color: #11271B; /* Card B G */
    border: 1px solid #2E7A4E; /* Border */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    text-align: center;
    padding-bottom: 20px;
    transition: transform 0.3s ease;
}

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

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

.page-about__product-title {
    font-size: 1.4em;
    color: #F2C14E; /* Gold */
    margin: 10px 15px;
    font-weight: 600;
}

.page-about__product-description {
    font-size: 0.95em;
    color: #A7D9B8; /* Text Secondary */
    padding: 0 15px;
    flex-grow: 1;
    margin-bottom: 15px;
}

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

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

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

.page-about__faq-item summary:hover {
    background-color: #1E3A2A; /* Divider color for hover */
}

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

.page-about__faq-qtext {
    flex-grow: 1;
    color: #57E38D; /* Glow */
}

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

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

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

.page-about__faq-answer .page-about__btn-link {
    margin-top: 15px;
    display: inline-block;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-about__section {
        padding: 40px 15px;
    }
    .page-about__product-grid {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding: 10px 15px;
    }
    .page-about__hero-content {
        padding: 0 15px;
    }
    .page-about__main-title {
        font-size: clamp(1.8em, 6vw, 2.5em);
    }
    .page-about__subtitle {
        font-size: 1em;
    }
    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    .page-about__btn-primary,
    .page-about__btn-secondary,
    .page-about__btn-link {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding: 15px 20px !important;
        font-size: 1.1em !important;
    }

    .page-about__section {
        padding: 30px 15px;
    }
    .page-about__section-title {
        font-size: clamp(1.6em, 5vw, 2.2em);
        margin-bottom: 30px;
    }
    .page-about__text-block {
        font-size: 0.95em;
    }
    .page-about__image-content {
        margin: 15px auto;
    }
    .page-about__feature-item,
    .page-about__responsibility-item,
    .page-about__vision-item,
    .page-about__faq-item {
        padding: 15px;
        margin-bottom: 10px;
    }
    .page-about__faq-item summary {
        padding: 15px 20px;
        font-size: 1em;
    }
    .page-about__faq-qtext {
        font-size: 1em;
    }
    .page-about__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.95em;
    }

    /* Mobile image, video, button responsiveness */
    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-about video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-about__section,
    .page-about__container,
    .page-about__content-wrapper,
    .page-about__product-grid,
    .page-about__faq-list,
    .page-about__cta-buttons,
    .page-about__hero-image-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-about__product-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    .page-about__product-image {
        height: auto !important;
    }
    .page-about__hero-image {
        height: auto !important;
        max-height: 400px;
    }
}