:root {
    --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-secondary); /* Dark background, so light text */
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
}

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

.page-about__hero-content {
    max-width: 900px;
    margin: 0 auto;
    z-index: 1;
    position: relative;
    padding-bottom: 30px;
}

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

.page-about__hero-title {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--page-about-gold);
    margin-bottom: 15px;
    line-height: 1.2;
}

.page-about__hero-description {
    font-size: 1.15rem;
    color: var(--page-about-text-main);
    margin-bottom: 30px;
}

.page-about__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    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: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
    max-width: 100%;
    white-space: normal;
    word-wrap: break-word;
}

.page-about__btn-primary {
    background: var(--page-about-button-gradient);
    color: var(--page-about-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);
}

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

.page-about__btn-secondary:hover {
    background: var(--page-about-glow);
    color: var(--page-about-background);
}

.page-about__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
    background-color: var(--page-about-background);
    box-sizing: border-box;
}

.page-about__section-title {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: var(--page-about-gold);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.page-about__section-subtitle {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    color: var(--page-about-text-main);
    margin-bottom: 20px;
    font-weight: 500;
}

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

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

.page-about__image-container {
    margin: 40px 0;
    text-align: center;
}

.page-about__image-container img {
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-width: 800px;
    margin: 0 auto;
    min-width: 200px;
    min-height: 200px;
}

.page-about__list {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-about__list-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: var(--page-about-text-secondary);
}

.page-about__list-item::before {
    content: '✅';
    margin-right: 10px;
    font-size: 1.2rem;
    color: var(--page-about-glow);
}

.page-about__faq-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
    background-color: var(--page-about-card-bg);
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.3);
    margin-bottom: 60px;
    box-sizing: border-box;
}

.page-about__faq-item {
    margin-bottom: 15px;
    border-bottom: 1px solid var(--page-about-divider);
    padding-bottom: 15px;
}

.page-about__faq-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.page-about__faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    cursor: pointer;
    font-weight: 600;
    color: var(--page-about-text-main);
    font-size: 1.1rem;
}

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

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

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

.page-about__faq-answer {
    padding-top: 10px;
    padding-bottom: 15px;
    color: var(--page-about-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

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

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

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

    .page-about__hero-description {
        font-size: 1rem;
    }

    .page-about__cta-group {
        flex-direction: column;
        gap: 10px;
    }

    .page-about__btn-primary,
    .page-about__btn-secondary {
        max-width: 100% !important;
        width: 100% !important;
        padding: 12px 20px !important;
        font-size: 0.95rem !important;
        white-space: normal !important;
        word-wrap: break-word !important;
        margin-left: auto;
        margin-right: auto;
    }

    .page-about__section,
    .page-about__faq-section,
    .page-about__image-container {
        padding-left: 15px;
        padding-right: 15px;
        max-width: 100% !important;
        width: 100% !important;
        box-sizing: border-box !important;
        margin-left: auto;
        margin-right: auto;
        overflow: hidden !important;
    }
    
    .page-about__section-title {
        font-size: clamp(1.8rem, 6vw, 2.2rem);
    }

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

    .page-about img {
        max-width: 100% !important;
        height: auto !important;
        display: block !important;
        min-width: 200px !important;
        min-height: 200px !important;
    }

    .page-about__faq-question {
        font-size: 1rem;
        padding: 12px 0;
    }

    .page-about__faq-answer {
        font-size: 0.9rem;
    }
}

.page-about img:not(.shared-logo) {
    min-width: 200px;
    min-height: 200px;
}