/* FAQ Section */
.faq-section {
    background-color: #f1f1f1;
    padding: 60px 20px;
    text-align: center;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-container h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #8B0000;
}

.faq-container p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.8;
}

/* FAQ Items Section */
.faq-items-section {
    background-color: #fff;
    padding: 60px 20px;
}

.faq-items-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-item {
    background-color: #f9f9f9;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.faq-item a 
{
    color: #8B0000;
    text-decoration: none;
}

.faq-item a:hover {
    color: #a00000;
    transition: color 0.3s ease;
    text-decoration: underline;
}

.faq-item h3 {
    font-size: 2rem;
    color: #8B0000;
    margin-bottom: 10px;
}

.faq-item p {
    font-size: 1.2rem;
    color: #555;
    line-height: 1.6;
}
