/* styles.css */
.container {
    font-family: Arial, sans-serif;
    background-color: #f9f9f9;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding-top:2rem;
    padding-bottom:2rem;
}

.faq-container {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 800px;
    width: 100%;
}

.faq-title {
    font-size: 32px;
    color: #333;
    text-align: center;
    margin-bottom: 20px;
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
    cursor: pointer;
    transition: background-color 0.3s;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    font-size: 20px;
    color: #007BFF;
    margin: 0;
}

.faq-answer {
    font-size: 16px;
    color: #666;
    display: none;
    margin-top: 10px;
}

.faq-item:hover {
    background-color: #f0f0f0;
}
