body {
    font-family: Arial, sans-serif;
    padding-bottom: 100px;
}

@media (max-width: 768px) {
    .navbar {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    }

    .nav-tabs {
        flex-direction: column;
        width: 100%;
    }

    .nav-tabs a{
        padding-left: 0;
        flex-shrink: 0;
    }
}

h3 {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 70px;
    font-size: 22px;
}

.faq-container {
    max-width: 80%;
    width: 100%;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid #ddd;
    border-radius: 5px;
    margin-bottom: 15px;
    align-items: center;
    overflow: hidden;
}

.answer img {
    max-width: 100%;
    height: auto;
    display: block;
    margin-top: 10px;
    border-radius: 5px;
}

.question {
    background-color: #fff8ee;
    padding: 15px 20px;
    cursor: pointer;
    position: relative;
    font-weight: bold;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.answer {
    padding: 0 20px;
    background-color: #fff;
    max-height: 0;
    overflow: hidden;
    line-height: 2;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.arrow {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.faq-item.open .arrow {
    transform: rotate(180deg);
}

.faq-item.open .answer {
    padding: 15px 20px;
    max-height: 1000px;
}