/* General FAQ container styling */
.faq-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    font-family: Arial, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* FAQ title */
.faq-container h1 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #2c3e50;
}

/* FAQ items */
.faq-item {
    margin-bottom: 20px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.faq-item h2 {
    font-size: 1.5rem;
    color: #34495e;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1rem;
    margin-bottom: 10px;
}

.faq-item ul {
    padding-left: 20px;
    list-style-type: disc;
}

.faq-item ul li {
    margin-bottom: 5px;
}

/* Back button styling */
.back-button {
    display: inline-block;
    margin-bottom: 20px;
    color: #3498db;
    text-decoration: none;
    font-size: 1rem;
}

.back-button:hover {
    text-decoration: underline;
}