.faq-list {
    margin: 20px 0;
}
.faq-item {
    border: 1px solid #ccc;
    padding: 10px;
    margin-bottom: 10px;
}
.faq-image img {
    max-width: 100%;
    height: auto;
}
.faq-cards-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);  /* 3 cards per row */
    gap: 20px;  /* Space between cards */
}

.faq-card {
    border: 1px solid #ddd;  /* Border around the card */
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    background-color: #fff;
}

.faq-image img {
    width: 100%;  /* Ensure image fits inside the card */
    height: auto;
    border-radius: 8px;
}

.faq-card h3 {
    font-size: 18px;
    margin-top: 10px;
    font-weight: bold;
}

.faq-card div {
    font-size: 14px;
    margin-top: 10px;
    color: #555;
}
