

.faq-section {
    max-width: 600px;
    margin: 50px auto;
    background: #fff;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

h2 {
    text-align: center;
    color: #333;
}

.faq {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    cursor: pointer;
}

.question {
    font-size: 18px;
    font-weight: bold;
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.icon {
    font-size: 20px;
    transition: transform 0.3s ease-in-out;
}

.answer {
    display: none;
    padding: 10px 0;
    font-size: 16px;
    color: #666;
    transition: max-height 0.3s ease-in-out;
}
