/* ===== FAQ Cards Section Styles ===== */

.faq-section {
    padding: 80px 0;
    background: var(--background-secondary); /* Use a subtle background for the section */
}

.faq-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px; /* Spacing between cards */
    margin-top: 40px;
}

.faq-card {
    background: var(--background); /* Card background */
    padding: 30px;
    border-radius: var(--radius-xl); /* Rounded corners */
    box-shadow: var(--shadow-md); /* Subtle shadow */
    border: 1px solid var(--border-light); /* Light border */
    transition: all 0.3s ease; /* Smooth transitions for hover effects */
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Pushes content apart if needed */
}

.faq-card:hover {
    transform: translateY(-8px); /* Lift effect on hover */
    box-shadow: var(--shadow-lg); /* Enhanced shadow on hover */
    border-color: var(--primary-200); /* Highlight border on hover */
}

.faq-card h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin-bottom: 15px;
    font-weight: 700;
    line-height: 1.4;
}

.faq-card p {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 0; /* Remove default paragraph margin */
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .faq-cards-grid {
        grid-template-columns: 1fr; /* Stack cards on smaller screens */
        gap: 20px;
    }

    .faq-card {
        padding: 25px;
    }

    .faq-card h3 {
        font-size: 1.2rem;
    }

    .faq-card p {
        font-size: 0.95rem;
    }
}
