:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
    --color-card-bg: #11271B;
    --color-background: #08160F;
    --color-text-main: #F2FFF6;
    --color-text-secondary: #A7D9B8;
    --color-border: #2E7A4E;
    --color-glow: #57E38D;
    --color-gold: #F2C14E;
    --color-divider: #1E3A2A;
    --color-deep-green: #0A4B2C;
}

.page-about {
    background-color: var(--color-background);
    color: var(--color-text-main); /* Light text for dark background */
    font-family: 'Arial', sans-serif; /* Example font */
    line-height: 1.6;
}

/* Hero Section */
.page-about__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column; /* Image first, then content */
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, body handles header offset */
    box-sizing: border-box;
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-width: 100%;
    margin-bottom: 30px; /* Space between image and text */
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.page-about__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1; /* Ensure content is above any potential background elements */
}

.page-about__main-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem); /* Responsive H1 font size */
    color: var(--color-gold); /* Using gold for main title for prominence */
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.5); /* Glow effect */
}

.page-about__intro-text {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 30px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* General Section Styling */
.page-about__section {
    padding: 80px 20px;
    box-sizing: border-box;
}

.page-about__section--introduction {
    background-color: var(--color-deep-green); /* Slightly different dark background */
    border-top: 1px solid var(--color-divider);
    border-bottom: 1px solid var(--color-divider);
}

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

.page-about__container--flex {
    display: flex;
    align-items: center;
    gap: 40px;
}

.page-about__container--reverse {
    flex-direction: row-reverse;
}

.page-about__container--centered {
    text-align: center;
}

.page-about__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
    padding-bottom: 15px;
}

.page-about__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--color-gold);
    border-radius: 2px;
}

.page-about__section-description {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    margin-bottom: 20px;
    text-align: justify;
}

.page-about__content-block {
    flex: 1;
    min-width: 300px;
}

.page-about__content-block p {
    margin-bottom: 15px;
    color: var(--color-text-secondary);
    text-align: justify;
}

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

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

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

.page-about__product-card {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

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

.page-about__product-title {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 15px;
    font-weight: 600;
}

.page-about__product-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    flex-grow: 1; /* Allow paragraph to take up available space */
    margin-bottom: 20px;
}

.page-about__card-link {
    display: inline-block;
    background-color: var(--color-primary);
    color: var(--color-text-main);
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-top: auto; /* Push link to bottom */
}

.page-about__card-link:hover {
    background-color: var(--color-secondary);
    transform: translateY(-2px);
}

/* Why Choose Us Section */
.page-about__section--why-choose-us {
    background-color: var(--color-deep-green);
    border-top: 1px solid var(--color-divider);
    border-bottom: 1px solid var(--color-divider);
}

.page-about__feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-about__feature-item {
    margin-bottom: 25px;
}

.page-about__feature-item:last-child {
    margin-bottom: 0;
}

.page-about__feature-title {
    font-size: 1.3rem;
    color: var(--color-gold);
    font-weight: 600;
    margin-bottom: 8px;
}

.page-about__feature-item p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.5;
}

/* FAQ Section */
.page-about__faq-list {
    margin-top: 40px;
}

.page-about__faq-item {
    background-color: var(--color-card-bg);
    border: 1px solid var(--color-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-main);
    cursor: pointer;
    background-color: var(--color-deep-green); /* Slightly darker for question */
    border-bottom: 1px solid var(--color-border);
}

.page-about__faq-item[open] .page-about__faq-question {
    border-bottom: 1px solid transparent; /* No border when open */
}

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

.page-about__faq-toggle {
    font-size: 1.5rem;
    line-height: 1;
    margin-left: 15px;
    color: var(--color-gold);
}

.page-about__faq-item[open] .page-about__faq-toggle {
    content: '−';
}

.page-about__faq-answer {
    padding: 20px 25px;
    font-size: 1rem;
    color: var(--color-text-secondary);
    background-color: var(--color-card-bg);
}

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

/* Hide default details marker */
.page-about__faq-item summary {
    list-style: none;
}
.page-about__faq-item summary::-webkit-details-marker {
    display: none;
}

/* Call to Action Section */
.page-about__section--cta {
    background-color: var(--color-deep-green);
    text-align: center;
    padding: 80px 20px;
    border-top: 1px solid var(--color-divider);
}

/* Buttons */
.page-about__btn-primary,
.page-about__btn-secondary,
.page-about__card-link,
.page-about__btn-large {
    display: inline-flex; /* Use flex for alignment */
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    text-align: center;
    min-width: 150px; /* Ensure buttons are not too small */
}

.page-about__btn-primary {
    background: var(--color-button-gradient);
    color: var(--color-text-main);
    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: transparent;
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-about__btn-secondary:hover {
    background-color: var(--color-primary);
    color: var(--color-text-main);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.page-about__btn-large {
    padding: 18px 40px;
    font-size: 1.2rem;
}

/* Images CSS requirements (No filter, min size, responsive) */
.page-about img {
    max-width: 100%;
    height: auto;
    display: block; /* Ensure images are block-level for max-width to work */
    object-fit: cover;
    /* No filter properties here */
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__container--flex {
        flex-direction: column;
    }

    .page-about__container--reverse {
        flex-direction: column; /* On smaller screens, reverse direction is also column */
    }

    .page-about__hero-section {
        padding: 40px 15px;
        padding-top: 10px;
    }

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

    .page-about__main-title {
        font-size: clamp(2rem, 6vw, 3rem);
    }

    .page-about__intro-text {
        font-size: 1.1rem;
    }

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

    .page-about__btn-primary,
    .page-about__btn-secondary {
        width: 100%;
        max-width: 300px; /* Limit width to prevent overly wide buttons on small screens */
        margin: 0 auto; /* Center buttons */
    }

    .page-about__section-title {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
    }

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

@media (max-width: 768px) {
    .page-about {
        font-size: 16px;
        line-height: 1.6;
    }

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

    /* Mobile container responsiveness - IMPORTANT */
    .page-about__section,
    .page-about__card,
    .page-about__container,
    .page-about__hero-section,
    .page-about__hero-image-wrapper,
    .page-about__hero-content,
    .page-about__content-block,
    .page-about__image-block,
    .page-about__product-card,
    .page-about__faq-item,
    .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;
        overflow: hidden !important; /* Prevent content overflow */
    }

    /* Video section top padding (if any) */
    .page-about__video-section {
        padding-top: 10px !important; /* body already handles --header-offset */
    }

    /* Mobile button responsiveness - IMPORTANT */
    .page-about__cta-button,
    .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: 15px; /* Add padding to buttons themselves */
        padding-right: 15px;
        margin-left: 0 !important; /* Override auto margin for full width */
        margin-right: 0 !important; /* Override auto margin for full width */
    }

    .page-about__cta-buttons {
        flex-direction: column !important; /* Stack buttons vertically */
        gap: 15px !important;
    }

    /* FAQ text size for mobile */
    .page-about__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-about__faq-answer {
        font-size: 0.95rem;
        padding: 15px 20px;
    }
}