/* ==================== ABOUT PAGE STYLES ==================== */

body {
    background: linear-gradient(135deg, #0f1419 0%, #1a2332 50%, #0f1419 100%) !important;
    color: var(--text-primary);
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.header-section {
    text-align: center;
    margin-bottom: 30px;
}

.header-section h1 {
    color: var(--text-primary);
    font-size: 2.4rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    font-weight: 800;
}

.header-section h1 i {
    color: #f79112;
}

.subtitle {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin: 0 auto;
    max-width: 920px;
    line-height: 1.7;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    align-items: stretch;
}

.about-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-light);
    border-radius: 20px;
    padding: 22px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
    transition: none;
}

.about-card.highlight {
    background: rgba(247, 145, 18, 0.08);
    border-color: rgba(247, 145, 18, 0.35);
}

.about-card.full {
    grid-column: 1 / -1;
}

.about-card h2 {
    margin: 0 0 12px 0;
    color: var(--text-primary);
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
}

.about-card h2 i {
    color: #f79112;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0 0 10px 0;
}

.about-card p:last-child {
    margin-bottom: 0;
}

.pill-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 12px;
}

.pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(15, 20, 25, 0.65);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.pill i {
    color: #f79112;
}

.about-list {
    margin: 0;
    padding-left: 18px;
    color: var(--text-secondary);
    line-height: 1.8;
}

.about-list li {
    margin: 8px 0;
}

.chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 10px 0 12px 0;
}

.chip {
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.03);
    color: var(--text-primary);
    font-weight: 700;
    font-size: 0.9rem;
}

.muted {
    opacity: 0.95;
}

.cta-section {
    margin-top: 22px;
}

.cta-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-light);
    border-radius: 20px;
    padding: 26px;
    box-shadow: var(--shadow-md);
    backdrop-filter: blur(10px);
}

.cta-card h2 {
    margin: 0 0 12px 0;
    color: var(--text-primary);
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 900;
}

.cta-card h2 i {
    color: #f79112;
}

.cta-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin: 0;
}

.cta-actions {
    margin-top: 16px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

/* FAQ styles (match other pages) */
.faq-section {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--primary-light);
    border-radius: 20px;
    padding: 40px;
    box-shadow: var(--shadow-md);
    margin: 40px 0;
    backdrop-filter: blur(10px);
}

.faq-section h2 {
    color: var(--text-primary);
    font-size: 2rem;
    margin-bottom: 30px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    font-weight: 800;
}

.faq-section h2 i {
    color: #f79112;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item-pdf {
    margin-bottom: 15px;
    border: 2px solid var(--primary-light);
    border-radius: 8px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.03);
    transition: all 0.3s ease;
}

.faq-question-pdf {
    padding: 15px 15px 15px 40px;
    background-color: rgba(255, 255, 255, 0.05);
    cursor: pointer;
    font-weight: 600;
    color: var(--text-primary);
    position: relative;
    font-size: 1.1em;
    transition: all 0.3s ease;
}

.faq-question-pdf::before {
    content: '+';
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
    line-height: 1;
    color: #f79112;
}

.faq-item-pdf.active .faq-question-pdf {
    background-color: rgba(247, 145, 18, 0.2);
    border-bottom: 2px solid #f79112;
}

.faq-item-pdf.active .faq-question-pdf::before {
    content: '-';
}

.faq-answer-pdf {
    background-color: rgba(255, 255, 255, 0.03);
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.5s ease;
}

.faq-item-pdf.active .faq-answer-pdf {
    padding: 15px;
    max-height: 1000px;
}

.faq-answer-pdf p {
    margin: 0;
    font-size: 1.1em;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* Responsive */
@media (max-width: 900px) {
    .about-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

@media (max-width: 600px) {
    .about-card,
    .cta-card {
        padding: 18px;
    }

    .header-section h1 {
        font-size: 2rem;
    }

    .subtitle {
        font-size: 1rem;
    }

    .faq-section {
        padding: 22px;
    }
}

