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

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

.page-about__hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.3; /* Slightly dim the image for text readability */
}

.page-about__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 20px;
    color: #F2FFF6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__main-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 20px;
    color: #F2C14E; /* Gold color for main title */
    font-weight: 700;
    line-height: 1.2;
}

.page-about__hero-description {
    font-size: clamp(1rem, 2vw, 1.3rem);
    margin-bottom: 30px;
    color: #A7D9B8;
}

.page-about__cta-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    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: 700;
    transition: all 0.3s 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%);
    color: #F2FFF6;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

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

.page-about__btn-secondary {
    background-color: transparent;
    color: #2AD16F; /* Green color for secondary button text */
    border: 2px solid #2AD16F;
}

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

.page-about__section {
    padding: 60px 0;
    text-align: center;
}

.page-about__light-bg {
    background-color: #11271B; /* Card BG color for light sections */
    color: #F2FFF6;
}

.page-about__dark-bg {
    background-color: #0A4B2C; /* Deep Green for dark sections */
    color: #F2FFF6;
}

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

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

.page-about__section-title--light {
    color: #F2FFF6;
}

.page-about__section-description {
    font-size: clamp(1rem, 2vw, 1.1rem);
    margin-bottom: 40px;
    color: #A7D9B8;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-about__section-description--light {
    color: #F2FFF6;
}

.page-about__content-wrapper {
    display: flex;
    align-items: center;
    gap: 40px;
    text-align: left;
    margin-top: 30px;
}

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

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

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

.page-about__text-block strong {
    color: #F2C14E;
}

.page-about__text-block a {
    color: #2AD16F;
    text-decoration: none;
}

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

.page-about__image {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

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

.page-about__product-card,
.page-about__promo-card {
    background-color: #11271B; /* Card BG color */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    min-width: 200px; /* Enforce minimum size */
}

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

.page-about__product-image,
.page-about__promo-image {
    width: 100%;
    height: 200px; /* Fixed height for consistency */
    object-fit: cover;
    min-width: 200px; /* Enforce minimum size */
    min-height: 200px; /* Enforce minimum size */
}

.page-about__product-title,
.page-about__promo-title {
    font-size: 1.5rem;
    color: #F2C14E;
    margin: 20px 20px 10px 20px;
}

.page-about__product-description,
.page-about__promo-description {
    font-size: 0.95rem;
    color: #A7D9B8;
    padding: 0 20px 20px 20px;
    flex-grow: 1;
}

.page-about__product-description a,
.page-about__promo-description a {
    color: #2AD16F;
    text-decoration: none;
}

.page-about__product-description a:hover,
.page-about__promo-description a:hover {
    text-decoration: underline;
}

.page-about__cta-buttons--center {
    margin-top: 50px;
    margin-bottom: 20px;
}

.page-about__cta-final-content {
    padding: 60px 20px;
    background-color: #11271B; /* Card BG for final CTA */
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-about__faq {
    margin-top: 40px;
    text-align: left;
}

.page-about__faq-title {
    font-size: 1.8rem;
    color: #F2C14E;
    margin-bottom: 25px;
    text-align: center;
}

.page-about__faq-item {
    background-color: #0A4B2C; /* Deep Green for FAQ items */
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 25px;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 600;
    color: #F2FFF6;
    background-color: #11A84E; /* Main color for FAQ question background */
    border-radius: 10px;
    transition: background-color 0.3s ease;
}

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

.page-about__faq-question:hover {
    background-color: #22C768;
}

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

.page-about__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    transition: transform 0.3s ease;
}

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

.page-about__faq-answer {
    padding: 15px 25px 20px 25px;
    font-size: 1rem;
    color: #F2FFF6;
    background-color: #0A4B2C; /* Deep Green for FAQ answer background */
    border-top: 1px solid #1E3A2A; /* Divider color */
}

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

.page-about__faq-answer a {
    color: #2AD16F;
    text-decoration: none;
}

.page-about__faq-answer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .page-about__content-wrapper {
        flex-direction: column;
        text-align: center;
    }
    .page-about__content-wrapper--reverse {
        flex-direction: column;
    }
    .page-about__text-block,
    .page-about__image-block {
        width: 100%;
    }
    .page-about__image {
        max-width: 80%;
        margin: 0 auto;
    }
    .page-about__product-grid,
    .page-about__promo-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-about__hero-section {
        padding-bottom: 40px;
    }
    .page-about__main-title {
        font-size: 2.2rem;
    }
    .page-about__hero-description {
        font-size: 1rem;
    }
    .page-about__section-title {
        font-size: 1.8rem;
    }
    .page-about__section-description {
        font-size: 0.9rem;
    }
    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-about__btn-primary,
    .page-about__btn-secondary {
        width: 100%;
        padding: 12px 20px;
    }
    .page-about__container {
        padding: 0 15px;
    }
    .page-about__image {
        max-width: 100% !important;
        height: auto !important;
        min-width: 200px !important; /* Ensure min-width for mobile */
        min-height: 200px !important; /* Ensure min-height for mobile */
    }
    .page-about__product-image,
    .page-about__promo-image {
        max-width: 100% !important;
        height: 180px !important; /* Adjust height for mobile card images */
        min-width: 200px !important; /* Ensure min-width for mobile */
        min-height: 200px !important; /* Ensure min-height for mobile */
    }

    .page-about img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-about__section,
    .page-about__card,
    .page-about__container,
    .page-about__product-card,
    .page-about__promo-card,
    .page-about__hero-section,
    .page-about__image-block,
    .page-about__text-block,
    .page-about__product-grid,
    .page-about__promo-grid,
    .page-about__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }
    .page-about__hero-section {
        padding-left: 0;
        padding-right: 0;
    }
    .page-about__cta-final-content {
        padding: 40px 15px;
    }
    .page-about__faq-question {
        padding: 15px 20px;
        font-size: 1rem;
    }
    .page-about__faq-answer {
        padding: 12px 20px 15px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .page-about__main-title {
        font-size: 1.8rem;
    }
    .page-about__section-title {
        font-size: 1.5rem;
    }
    .page-about__product-grid,
    .page-about__promo-grid {
        grid-template-columns: 1fr;
    }
}