/* Custom Styles for About Us Page (about.html) */

/* Reusing faq-container for centered max-width */
.faq-container { 
    max-width: 900px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* New card for the main content block */
.about-section-card {
    background: var(--color-card-bg);
    border: 1px solid var(--color-border);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

/* Ensure paragraph text is readable inside the card */
.about-section-card p {
    color: var(--color-text-muted);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Reusing the FAQ category title for sections */
.faq-category-title i {
    color: var(--color-primary);
    margin-right: 0.5rem;
}

/* Style for CTA buttons at the bottom */
.about-cta-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px dashed var(--color-border);
}

/* Media Query for smaller screens for CTA buttons */
@media (max-width: 600px) {
    .about-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .about-cta-buttons .big-btn {
        width: 100%;
    }
}