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

.page-about {
    background-color: var(--page-about-background);
    color: var(--page-about-text-main); /* Main text color for the page */
    font-family: Arial, sans-serif;
    line-height: 1.6;
    font-size: 16px;
}

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

.page-about__hero-section {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 20px;
    padding-top: 10px; /* Small top padding, not --header-offset */
    text-align: center;
    background-color: var(--page-about-deep-green); /* Example background for hero section */
}

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

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

.page-about__hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-about__main-title {
    color: var(--page-about-gold);
    font-size: clamp(2.2rem, 4vw + 1rem, 3.5rem); /* Responsive H1 font size */
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(242, 193, 78, 0.5);
}

.page-about__intro-text {
    color: var(--page-about-text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
}

.page-about__cta-buttons {
    display: flex;
    flex-wrap: wrap; /* Allow wrapping on small screens */
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.page-about__btn-primary,
.page-about__btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 30px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    font-size: 1rem;
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box; /* Include padding in width */
    white-space: normal; /* Allow text wrapping */
    word-wrap: break-word; /* Break long words */
}

.page-about__btn-primary {
    background: var(--page-about-button-gradient);
    color: var(--page-about-text-main); /* White text on dark/gradient button */
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(17, 168, 78, 0.4);
}

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

.page-about__btn-secondary {
    background: transparent;
    color: var(--page-about-gold);
    border: 2px solid var(--page-about-gold);
    box-shadow: 0 4px 15px rgba(242, 193, 78, 0.2);
}

.page-about__btn-secondary:hover {
    background: rgba(242, 193, 78, 0.1);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 193, 78, 0.4);
}

.page-about__section {
    padding: 80px 0;
    border-bottom: 1px solid var(--page-about-divider);
}

.page-about__section:last-of-type {
    border-bottom: none;
}

.page-about__section-title {
    color: var(--page-about-text-main);
    font-size: clamp(1.8rem, 3vw + 1rem, 2.8rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 50px;
    text-shadow: 0 0 5px rgba(242, 255, 246, 0.2);
}

.page-about__content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    color: var(--page-about-text-secondary);
}

.page-about__content-wrapper h3 {
    color: var(--page-about-text-main);
    font-size: 1.6rem;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}

.page-about__content-wrapper p {
    margin-bottom: 15px;
}

.page-about__list {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}

.page-about__list li {
    margin-bottom: 10px;
    color: var(--page-about-text-secondary);
}

.page-about__link {
    color: var(--page-about-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-about__link:hover {
    color: var(--page-about-glow);
    text-decoration: underline;
}

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

.page-about__feature-card,
.page-about__product-card {
    background-color: var(--page-about-card-bg);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--page-about-border);
    max-width: 100%; /* Ensure responsiveness */
    box-sizing: border-box;
    overflow: hidden;
}

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

.page-about__feature-icon,
.page-about__product-image {
    width: 100%; /* Ensure images fill card width */
    height: 250px; /* Fixed height for consistency */
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    display: block; /* Remove extra space below image */
}

.page-about__feature-title,
.page-about__product-title {
    color: var(--page-about-text-main);
    font-size: 1.4rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.page-about__product-title a {
    color: inherit; /* Keep link color same as title */
    text-decoration: none;
}

.page-about__product-title a:hover {
    color: var(--page-about-gold);
    text-decoration: underline;
}

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

.page-about__faq-item {
    background-color: var(--page-about-card-bg);
    border: 1px solid var(--page-about-border);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
}

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

.page-about__faq-item[open] .page-about__faq-question {
    border-bottom: 1px solid var(--page-about-border);
}

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

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

.page-about__faq-answer {
    padding: 20px;
    color: var(--page-about-text-secondary);
    border-top: none;
}

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

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

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

/* Responsive styles */
@media (max-width: 768px) {
    .page-about {
        font-size: 15px;
        line-height: 1.5;
    }

    .page-about__hero-section {
        padding: 40px 15px;
        padding-top: 10px !important; /* Ensure small top padding */
    }

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

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

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

    .page-about__btn-primary,
    .page-about__btn-secondary {
        width: 100% !important;
        padding: 12px 20px;
    }

    .page-about__section {
        padding: 50px 0;
    }

    .page-about__section-title {
        font-size: clamp(1.5rem, 7vw, 2rem);
        margin-bottom: 30px;
    }

    .page-about__content-wrapper h3 {
        font-size: 1.4rem;
        margin-top: 30px;
        margin-bottom: 15px;
    }

    .page-about__container {
        padding: 0 15px;
    }

    /* Images responsiveness */
    .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__feature-card,
    .page-about__product-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important; /* Ensure no overflow */
    }
    .page-about__feature-icon,
    .page-about__product-image {
        height: auto; /* Allow height to adjust for smaller screens */
    }
    .page-about__faq-question {
        font-size: 1rem;
        padding: 15px;
    }
    .page-about__faq-answer {
        padding: 15px;
    }
}