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

.page-about__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    padding-top: 10px; /* Small top padding, body handles header offset */
}

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

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

.page-about__hero-content {
    position: relative; /* Changed from absolute to relative to comply with 'no overlay' rule */
    padding: 40px 20px;
    max-width: 900px;
    margin: 20px auto 0 auto; /* Add margin to separate from image */
    background-color: #11271B; /* Card BG */
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    z-index: 1;
    color: #F2FFF6;
}

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

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

.page-about__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    white-space: normal;
    word-wrap: break-word;
    box-sizing: border-box;
    max-width: 100%;
}

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

.page-about__cta-button--primary:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.page-about__cta-button--secondary {
    background: transparent;
    color: #F2C14E; /* Gold */
    border: 2px solid #F2C14E; /* Gold */
    margin-left: 20px;
}

.page-about__cta-button--secondary:hover {
    background: #F2C14E;
    color: #08160F;
}

.page-about__section-title {
    font-size: clamp(1.8em, 4vw, 2.5em);
    color: #F2C14E; /* Gold */
    text-align: center;
    margin-bottom: 40px;
    font-weight: bold;
    line-height: 1.3;
}

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

.page-about__text-block {
    font-size: 1.05em;
    color: #F2FFF6; /* Text Main */
    margin-bottom: 20px;
    text-align: justify;
}

.page-about__text-block a {
    color: #2AD16F; /* Highlight links */
    text-decoration: none;
    font-weight: bold;
}

.page-about__text-block a:hover {
    text-decoration: underline;
}

.page-about__dark-section {
    background-color: #0A4B2C; /* Deep Green */
    padding: 60px 0;
}

.page-about__values-list,
.page-about__product-list,
.page-about__features-grid {
    display: grid;
    gap: 30px;
    margin-top: 30px;
    margin-bottom: 40px;
}

.page-about__values-list {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

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

.page-about__value-title,
.page-about__product-title,
.page-about__feature-title {
    font-size: 1.4em;
    color: #57E38D; /* Glow */
    margin-bottom: 15px;
    font-weight: bold;
}

.page-about__value-description,
.page-about__product-description,
.page-about__feature-description {
    font-size: 1em;
    color: #A7D9B8; /* Text Secondary */
}

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

.page-about__product-list {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    list-style: none;
    padding: 0;
}

.page-about__product-item {
    background-color: #11271B; /* Card BG */
    padding: 25px;
    border-radius: 10px;
    border: 1px solid #2E7A4E;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.15);
}

.page-about__features-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.page-about__cta-section {
    text-align: center;
    padding: 80px 0;
    background-color: #0A4B2C; /* Deep Green */
}

.page-about__cta-content {
    max-width: 800px;
}

.page-about__cta-content .page-about__section-title {
    color: #F2FFF6; /* Text Main */
}

.page-about__cta-content .page-about__text-block {
    color: #A7D9B8; /* Text Secondary */
    margin-bottom: 30px;
}

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

.page-about__faq-section {
    padding: 60px 0;
    background-color: #08160F; /* Background */
}

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

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

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15em;
    font-weight: bold;
    color: #F2C14E; /* Gold */
    cursor: pointer;
    user-select: none;
    background-color: #11271B; /* Card BG */
    list-style: none; /* Remove default marker 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: 15px;
    transition: transform 0.3s ease;
    color: #57E38D; /* Glow */
}

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

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

.page-about__faq-answer p {
    margin: 0;
    padding-top: 10px;
}

/* Responsive styles */
@media (max-width: 1024px) {
    .page-about__hero-content {
        padding: 30px 15px;
    }
    .page-about__main-title {
        font-size: clamp(1.8em, 4.5vw, 2.5em);
    }
    .page-about__section-title {
        font-size: clamp(1.6em, 3.5vw, 2.2em);
    }
    .page-about__cta-button {
        padding: 12px 25px;
        font-size: 1em;
    }
}

@media (max-width: 768px) {
    .page-about__hero-content {
        margin-top: 10px;
        margin-left: 15px;
        margin-right: 15px;
        border-radius: 5px;
    }
    .page-about__hero-image {
        height: 300px; /* Adjust hero image height for mobile */
    }
    .page-about__main-title {
        font-size: clamp(1.5em, 6vw, 2em);
        margin-bottom: 15px;
    }
    .page-about__description {
        font-size: 0.95em;
        margin-bottom: 20px;
    }
    .page-about__cta-button {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: 0 !important;
        margin-bottom: 10px; /* Stack buttons */
    }
    .page-about__button-group {
        flex-direction: column;
        gap: 10px;
    }
    .page-about__container {
        padding: 20px 15px;
    }
    .page-about__section-title {
        font-size: clamp(1.4em, 5vw, 2em);
        margin-bottom: 25px;
    }
    .page-about__text-block {
        font-size: 0.95em;
    }
    .page-about__values-list, .page-about__product-list, .page-about__features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-about__value-item, .page-about__feature-card, .page-about__product-item {
        padding: 20px;
    }
    .page-about__value-title, .page-about__product-title, .page-about__feature-title {
        font-size: 1.2em;
    }
    .page-about__faq-question {
        font-size: 1em;
        padding: 15px 20px;
    }
    .page-about__faq-answer {
        padding: 0 20px 15px 20px;
    }

    /* Mobile image adaptation */
    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-about__section, .page-about__card, .page-about__container, .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__hero-section {
        padding-top: 10px !important;
    }
}

@media (max-width: 480px) {
    .page-about__hero-content {
        padding: 20px 10px;
    }
    .page-about__main-title {
        font-size: clamp(1.3em, 7vw, 1.8em);
    }
    .page-about__description {
        font-size: 0.9em;
    }
    .page-about__cta-button {
        font-size: 0.9em;
        padding: 12px 20px;
    }
}