/* FAQ Section */
.faq-section {
    padding: 60px 20px;
    text-align: center;
}

.faq-section h1 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #f5f5f5;
}

/* FAQ Container */
.faq-container {
    max-width: 800px;
    margin: auto;
}

.faq-item {
    margin-bottom: 20px;
    background-color: #3e3e3e;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px;
    background-color: #4e4e4e;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    outline: none;
    transition: background-color 0.3s;
}

.faq-question:hover {
    background-color: #5e5e5e;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    padding: 0 20px;
    transition: max-height 0.5s ease;
    color: #b5b5b5;
}

.faq-answer p {
    margin: 20px 0;
}

.faq-answer a {
    color: #ff5722;
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}