.faq-section {
    padding: 3rem 0;
}
.faq-section h2{
    text-align: center;
    margin-bottom: 20px;
    padding-top: 80px;
}

.faq-item {
    background-color: #fff;
    padding: 1.5rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.faq-item h3 {
    font-size: 1.5rem;
    color: #343a40;
    font-weight: bold;
    margin-bottom: 1rem;
    letter-spacing: 0.5px;
    line-height: 30px;
}

.faq-item p {
    font-size: 1rem;
    color: #343a40;
    line-height: 1.7;
}

.faq-item ul {
    margin-left: 1.5rem;
    list-style-type: disc;
    color: #343a40;
}

.faq-item ul li {
    font-size: 1rem;
}

/* Container styling to give space on the sides */
.faq-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}