/* FAQ Section Styles */
  .section_padding {
            padding: 80px 0;
        }
.faq_accordion {
    max-width: 970px;
    display: block;
    margin: 0 auto;
}

.title_area {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    text-align: center;
}

.animate_title {
    position: relative;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    padding-bottom: 20px;
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
}

.animate_title::before,
.animate_title::after {
    content: "";
    position: absolute;
    height: 3px;
    width: 50px;
    background-color: red;
    bottom: 0;
    transition: 0.4s ease;
}

.animate_title::before {
    left: 0;
}

.animate_title::after {
    right: 0;
}

.animate_title:hover::before,
.animate_title:hover::after {
    width: 80px;
    background-color: #ff6b35;
}

/* Accordion Styles */
.accordion_card {
    transition: 0.4s ease-in-out;
    overflow: hidden;
    /* background-color: #f0ebeb; */
    position: relative;
    z-index: 3;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 24px;
}

.accordion_header {
    position: relative;
}

.accordion_button {
    width: 100%;
    font-size: 18px;
    font-weight: 600;
    border: 0;
    color: #000;
    background-color: #ffffff;
    letter-spacing: 0.02em;
    padding: 24px 60px 24px 48px;
    text-align: left;
    transition: 0.3s;
    position: relative;
    border-radius: 8px 8px 0 0;
    cursor: pointer;
    display: flex;
    align-items: center;
}

.accordion_button.active {
    color: #000;
    /* background-color: #f0ebeb; */
    padding-bottom: 15px;
}

.accordion_button h1,
.accordion_button h2,
.accordion_button h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
    color: inherit;
}

.accordion_button::after {
    content: "+";
    position: absolute;
    right: 30px;
    font-size: 20px;
    font-weight: 500;
    color: red;
    transition: 0.3s ease-in-out;
}

.accordion_button.active::after {
    content: "−";
    color: orangered;
}

.accordion_collapse {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion_collapse.show {
    max-height: 1000px;
    /* Adjust based on content */
}

.accordion_body {
    padding: 0 48px 24px;
    border-radius: 0 0 8px 8px;
}

.faq_text {
    margin-bottom: 15px;
    color: #000;
    line-height: 1.6;
}

.faq_text ul {
    margin-top: 10px;
    padding-left: 20px;
}

.accordion_body ul li {
    margin-bottom: 8px;
    color: #111111;
}

.faq_text a {
    color: orangered;
    text-decoration: none;
    font-weight: 600;
}

.faq_text a:hover {
    text-decoration: underline;
}

/* Animation */
@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}