/* FAQ Section Styling Web*/
.faq-section {
    background-color: #f9f9f9;
    padding: 50px 0;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-in-out forwards;
}

.faq-section h2 {
    font-size: 2.3rem;
    font-weight: bold;
    margin-bottom: 30px;
    color: #000000;
    animation: fadeInUp 1s ease-in-out forwards 0.2s;
    text-align: center;
}

.faq-section h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    color: #000000;
    animation: fadeInUp 1s ease-in-out forwards 0.2s;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 5px;
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 1s ease-in-out forwards 0.4s;
}

.faq-header {
    padding: 20px;
    padding-right: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    color: #000;
    border-bottom: 1px solid #e5e5e5;
}

.faq-body {
    padding: 20px;
    font-size: 1.2rem;
    line-height: 1.6;
    color: #000000;
}

.faq-header i {
    font-size: 1.5rem;
    color: #000000;
}

.faq-header:hover h3,
.faq-header:hover i {
    color: #F16A23;
}

.faq-body p, .faq-body ol {
    margin: 0;
    color: #000000;
    font-size: 1rem;
}

.faq-body ol {
    padding-left: 20px;
}

.faq-body {
    transition: all 0.3s ease-in-out;
}

.container-wrap {
    max-width: 1140px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 50px;
    padding-bottom: 150px;
}

.faq-body table {
    width: 100%;
    margin-top: 20px;
    border-collapse: collapse;
}

.faq-body th, .faq-body td {
    padding: 10px;
    text-align: left;
}

.faq-body th {
    background-color: #f1f1f1;
    font-weight: bold;
}

.faq-body td {
    border: 1px solid #ddd;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* FAQ Section Styling Mobile*/
@media (max-width: 768px) {
    .faq-section {
        padding: 20px 10px;
    }

    .faq-section h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
        text-align: left;
    }

    .faq-item {
        margin-bottom: 10px;
        padding: 0;
    }

    .faq-header {
        font-size: 1rem;
        padding: 15px;
    }

    .faq-header i {
        font-size: 1.2rem;
    }

    .faq-body {
        padding: 15px;
        font-size: 1rem;
        line-height: 1.5;
    }

    .container-wrap {
        padding-top: 20px;
        padding-bottom: 10px;
    }
}
