.title h1 {
    font-size: 2.5rem;
    font-weight: 700;
}

@media (max-width: 576px) {
    .title h1 {
        font-size: 2rem;
        font-weight: 700;
    }

    .title p {
        font-size: 1rem;
    }
}

.title p {
    font-size: 1.3rem;
}

.faq-wrapper {
    margin-top: 35px;
    margin-bottom: 40px;
}


.faq-accordion {
    width: 100%;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 4px;
    margin-bottom: 20px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    background-color: #197274;
    color: white;
    font-size: 16px;
    font-weight: bold;
    padding: 15px;
    text-align: left;
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background-color: #002f34;
}

.faq-answer {
    display: none;
    padding: 15px;
    background-color: white;
}

.faq-question i {
    font-size: 1.5rem;
    transition: transform 0.3s ease;
}

.faq-question .close-icon {
    display: none;
}