:root {
    --primary-color: #11A84E; /* Main */
    --secondary-color: #22C768; /* Auxiliary */
    --card-bg: #11271B; /* Card BG */
    --page-bg: #08160F; /* Background */
    --text-main: #F2FFF6; /* Text Main */
    --text-secondary: #A7D9B8; /* Text Secondary */
    --border-color: #2E7A4E; /* Border */
    --glow-color: #57E38D; /* Glow */
    --gold-color: #F2C14E; /* Gold */
    --divider-color: #1E3A2A; /* Divider */
    --deep-green: #0A4B2C; /* Deep Green */

    /* Button gradient */
    --button-gradient: linear-gradient(180deg, #2AD16F 0%, #13994A 100%);
}

.page-about {
    font-family: 'Arial', sans-serif;
    color: var(--text-main); /* Default text color for the page */
    background-color: var(--page-bg); /* Page background */
    line-height: 1.6;
    font-size: 16px;
    /* body padding-top is handled by shared.css */
}

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

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

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

.page-about__hero-content {
    max-width: 900px;
    text-align: center;
    z-index: 1;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-about__main-title {
    font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
    color: var(--gold-color);
    margin-bottom: 20px;
    font-weight: 700;
    line-height: 1.2;
    text-shadow: 0 0 10px rgba(87, 227, 141, 0.6); /* Glow color for text */
}

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

/* General Section Styles */
.page-about__section {
    padding: 60px 20px;
    text-align: center;
    box-sizing: border-box;
}

.page-about__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px; /* Consistent inner padding */
    box-sizing: border-box;
}

.page-about__section-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--primary-color);
    margin-bottom: 30px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.page-about__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: var(--gold-color);
    margin: 10px auto 0;
    border-radius: 2px;
}

.page-about__text-block {
    font-size: 1rem;
    color: var(--text-main);
    margin-bottom: 20px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-about__text-block a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
}

.page-about__text-block a:hover {
    text-decoration: underline;
    color: var(--gold-color);
}

/* Images within content */
.page-about__image-content {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    margin: 30px auto;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    min-width: 200px; /* Minimum size */
    min-height: 200px; /* Minimum size */
    filter: none; /* Ensure no filter on images */
}

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

.page-about__grid-item {
    background-color: var(--card-bg);
    padding: 30px;
    border-radius: 12px;
    text-align: left;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    border: 1px solid var(--border-color);
}

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

/* Lists */
.page-about__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
    text-align: left;
}

.page-about__list-item {
    color: var(--text-main);
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.page-about__list-item::before {
    content: '✅'; /* Checkmark emoji */
    position: absolute;
    left: 0;
    color: var(--gold-color);
}

.page-about__list--promotions .page-about__list-item::before {
    content: '🎁'; /* Gift emoji for promotions */
}

.page-about__list--support .page-about__list-item::before {
    content: '📞'; /* Phone emoji for support */
}

/* Call to Action Buttons */
.page-about__cta-button {
    display: inline-block;
    background: var(--button-gradient);
    color: #ffffff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    border: none;
    cursor: pointer;
    text-align: center;
    max-width: 100%; /* Ensure button doesn't overflow */
    box-sizing: border-box;
    white-space: normal; /* Allow text to wrap */
    word-wrap: break-word; /* Break long words */
}

.page-about__cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(87, 227, 141, 0.6); /* Glow effect on hover */
    background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%); /* Reverse gradient */
}

.page-about__cta-button--small {
    padding: 10px 20px;
    font-size: 0.95rem;
}

.page-about__cta-button--large {
    padding: 18px 40px;
    font-size: 1.3rem;
    min-width: 280px;
}

.page-about__cta-button--secondary {
    background: none;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    box-shadow: none;
}

.page-about__cta-button--secondary:hover {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
    transform: translateY(-3px);
}

/* Dark Background Section */
.page-about__dark-bg {
    background-color: var(--deep-green); /* Use Deep Green for dark sections */
    color: var(--text-main);
}

/* FAQ Section */
.page-about__faq {
    background-color: var(--card-bg); /* Use card background for FAQ section */
    padding-bottom: 80px;
}

.page-about__faq-list {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.page-about__faq-item {
    background-color: #1a3026; /* Slightly lighter than card-bg for contrast */
    border: 1px solid var(--border-color);
    border-radius: 8px;
    margin-bottom: 15px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--primary-color);
    cursor: pointer;
    background-color: #1a3026;
    user-select: none;
    transition: background-color 0.3s ease;
}

.page-about__faq-question:hover {
    background-color: #223a2f;
}

.page-about__faq-item[open] .page-about__faq-question {
    background-color: var(--deep-green);
    color: var(--gold-color);
}

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

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

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

.page-about__faq-answer {
    padding: 0 25px 20px;
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    text-align: left;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .page-about__hero-section {
        padding: 40px 15px;
    }
    .page-about__main-title {
        font-size: clamp(2rem, 5vw, 3rem);
    }
    .page-about__description {
        font-size: 1.1rem;
    }
    .page-about__section {
        padding: 50px 15px;
    }
    .page-about__section-title {
        font-size: clamp(1.6rem, 4vw, 2.5rem);
    }
    .page-about__text-block {
        font-size: 0.95rem;
    }
}

@media (max-width: 768px) {
    .page-about {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-about__hero-section {
        padding: 20px 15px;
        padding-top: 10px !important; /* Ensure small top padding */
    }
    .page-about__main-title {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
        margin-bottom: 15px;
    }
    .page-about__description {
        font-size: 1rem;
        margin-bottom: 20px;
    }
    .page-about__section {
        padding: 30px 15px;
    }
    .page-about__section-title {
        font-size: clamp(1.5rem, 5vw, 2.2rem);
        margin-bottom: 20px;
    }
    .page-about__text-block {
        font-size: 0.9rem;
    }
    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }
    .page-about__container,
    .page-about__hero-image-wrapper,
    .page-about__hero-content,
    .page-about__content-grid,
    .page-about__grid-item,
    .page-about__faq-list,
    .page-about__faq-item {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    /* Buttons responsive */
    .page-about__cta-button,
    .page-about__cta-button--small,
    .page-about__cta-button--large,
    .page-about__cta-button--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;
        padding-right: 15px;
        margin-bottom: 10px; /* Space between stacked buttons */
    }

    /* If multiple buttons are in a flex container */
    .page-about__hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .page-about__content-grid {
        grid-template-columns: 1fr; /* Stack grid items */
    }
    .page-about__cta-button--large {
        min-width: unset; /* Remove min-width on mobile */
    }
    .page-about__faq-question {
        font-size: 1rem;
        padding: 15px 20px;
    }
    .page-about__faq-answer {
        padding: 0 20px 15px;
        font-size: 0.9rem;
    }
}