:root {
    --color-primary: #11A84E;
    --color-secondary: #22C768;
    --color-button-gradient-start: #2AD16F;
    --color-button-gradient-end: #13994A;
    --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 {
    font-family: 'Arial', sans-serif;
    background-color: var(--color-background);
    color: var(--color-text-main);
    line-height: 1.6;
    padding-bottom: 50px;
}

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

.page-about__hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px 0 60px;
    background-color: var(--color-deep-green);
    overflow: hidden;
}

.page-about__hero-image-wrapper {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    margin-bottom: 30px;
}

.page-about__hero-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: brightness(0.8);
}

.page-about__hero-content {
    max-width: 900px;
    padding: 0 20px;
    z-index: 1;
}

.page-about__main-title {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    color: var(--color-gold);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.page-about__subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--color-text-main);
    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;
}

.page-about__btn-primary,
.page-about__btn-secondary {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
}

.page-about__btn-primary {
    background: linear-gradient(180deg, var(--color-button-gradient-start) 0%, var(--color-button-gradient-end) 100%);
    color: var(--color-text-main);
    border: none;
}

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

.page-about__btn-secondary {
    background-color: transparent;
    color: var(--color-text-main);
    border: 2px solid var(--color-primary);
}

.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.4);
}

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

.page-about__section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    color: var(--color-gold);
    text-align: center;
    margin-bottom: 40px;
    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-primary);
    border-radius: 2px;
}

.page-about__section-description {
    text-align: center;
    max-width: 900px;
    margin: -20px auto 40px;
    color: var(--color-text-secondary);
    font-size: 1.1rem;
}

.page-about__sub-title {
    font-size: clamp(1.4rem, 3vw, 2rem);
    color: var(--color-primary);
    margin-top: 30px;
    margin-bottom: 15px;
}

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

.text-highlight {
    color: var(--color-gold);
    font-weight: bold;
}

/* Intro Section */
.page-about__intro-section .page-about__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.page-about__image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

/* Why Choose Us Section */
.page-about__why-choose-us {
    background-color: var(--color-card-bg);
}

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

.page-about__feature-card {
    background-color: var(--color-deep-green);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-about__feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

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

.page-about__feature-card p {
    color: var(--color-text-secondary);
}

/* Our Commitment Section */
.page-about__our-commitment .page-about__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

.page-about__our-commitment .page-about__content-grid--reverse {
    flex-direction: row-reverse;
}

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

/* Products & Services Section */
.page-about__products-services {
    background-color: var(--color-card-bg);
}

.page-about__product-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-about__product-card {
    background-color: var(--color-deep-green);
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

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

.page-about__product-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
    filter: brightness(0.9);
}

.page-about__product-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.page-about__product-title a {
    color: var(--color-gold);
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-about__product-title a:hover {
    color: var(--color-glow);
}

.page-about__product-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
}

/* Our Team Section */
.page-about__our-team .page-about__content-grid {
    display: flex;
    gap: 40px;
    align-items: center;
}

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

.page-about__btn-team-cta {
    margin-top: 20px;
}

/* Contact Us Section */
.page-about__contact-us {
    background-color: var(--color-deep-green);
}

.page-about__contact-description {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
    color: var(--color-text-secondary);
}

.page-about__contact-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.page-about__contact-item {
    background-color: var(--color-card-bg);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-about__contact-title {
    font-size: 1.4rem;
    color: var(--color-primary);
    margin-bottom: 15px;
}

.page-about__contact-item p {
    color: var(--color-text-secondary);
    margin-bottom: 10px;
}

.page-about__contact-detail {
    font-weight: bold;
    color: var(--color-gold);
    font-size: 1.1rem;
}

/* FAQ Section */
.page-about__faq-section {
    padding-bottom: 80px;
}

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

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

.page-about__faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    font-size: 1.15rem;
    font-weight: bold;
    color: var(--color-text-main);
    cursor: pointer;
    background-color: var(--color-deep-green);
    border-bottom: 1px solid var(--color-divider);
    list-style: none;
    transition: background-color 0.3s ease;
}

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

.page-about__faq-item summary:hover {
    background-color: var(--color-primary);
}

.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;
    font-size: 1rem;
    color: var(--color-text-secondary);
    border-top: 1px solid var(--color-divider);
}

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

.page-about__faq-answer .page-about__btn-primary {
    margin-top: 15px;
    padding: 10px 20px;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-about__intro-section .page-about__content-grid,
    .page-about__our-commitment .page-about__content-grid,
    .page-about__our-team .page-about__content-grid {
        flex-direction: column;
        text-align: center;
    }
    .page-about__intro-section .page-about__image-wrapper,
    .page-about__our-commitment .page-about__image-wrapper,
    .page-about__our-team .page-about__image-wrapper {
        margin-top: 30px;
    }
    .page-about__our-commitment .page-about__content-grid--reverse {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .page-about {
        font-size: 16px;
        line-height: 1.6;
    }
    .page-about__section {
        padding: 40px 0;
    }
    .page-about__hero-section {
        padding: 10px 0 40px;
    }
    .page-about__hero-image-wrapper {
        max-height: 400px;
    }
    .page-about__main-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .page-about__subtitle {
        font-size: clamp(0.9rem, 3.5vw, 1.1rem);
    }
    .page-about__cta-buttons {
        flex-direction: column;
        gap: 15px;
        padding: 0 15px;
    }
    .page-about__btn-primary,
    .page-about__btn-secondary {
        width: 100% !important;
        max-width: 100% !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        padding-left: 15px;
        padding-right: 15px;
    }

    .page-about__section-title {
        font-size: clamp(1.5rem, 6vw, 2.2rem);
        margin-bottom: 30px;
    }
    .page-about__sub-title {
        font-size: clamp(1.2rem, 5vw, 1.6rem);
    }
    .page-about__features-grid,
    .page-about__product-cards,
    .page-about__contact-methods {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .page-about__product-image {
        height: 180px;
    }
    .page-about__contact-description {
        padding: 0 15px;
    }

    .page-about img {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-about__image-wrapper,
    .page-about__hero-image-wrapper,
    .page-about__product-card {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        overflow: hidden !important;
    }

    .page-about video,
    .page-about__video {
        max-width: 100% !important;
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    .page-about__video-section,
    .page-about__video-container,
    .page-about__video-wrapper {
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        padding-left: 15px;
        padding-right: 15px;
        overflow: hidden !important;
    }
    .page-about__video-section {
        padding-top: 10px !important;
    }
}