/* FAQ Section Styles */
.faq-section {
    position: relative;
    padding: 120px 0 90px;
}

.sec-title-one {
    position: relative;
    margin-bottom: 30px;
}

.sec-title-one .icon {
    position: relative;
    display: block;
    font-size: 50px;
    line-height: 1em;
    color: #ff8a00;
    margin-bottom: 15px;
}

.sec-title-one h3 {
    position: relative;
    display: block;
    font-size: 30px;
    line-height: 1.2em;
    color: #222222;
    font-weight: 700;
}

/* Accordion Box */
.accordion-box {
    position: relative;
}

.accordion-box .block {
    position: relative;
    margin-bottom: 15px;
    border: 1px solid #dddddd;
    border-radius: 8px;
    background: #2651a6; /* Dark background for the accordion */
}

.accordion-box .block:last-child {
    margin-bottom: 0;
}

.accordion-box .block .acc-btn {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    color: #ffffff; /* White text for better contrast */
    font-weight: 500;
    cursor: pointer;
    padding: 20px 50px 20px 30px;
    transition: all 500ms ease;
    background: rgba(255, 255, 255, 0.1); /* Slightly lighter background for the button */
}

.accordion-box .block .acc-btn.active {
    color: #ffffff;
    background: #1e3f7d; /* Darker background for active state */
}

.accordion-box .block .acc-btn .icon {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    font-weight: normal;
    transition: all 500ms ease;
}

.accordion-box .block .acc-btn.active .icon {
    transform: rotate(180deg);
    color: #ffffff;
}

.accordion-box .block .acc-btn.active .icon:before {
    content: "\f068";
}

.accordion-box .block .acc-content {
    position: relative;
    display: none;
}

.accordion-box .block .acc-content.current {
    display: block;
}

.accordion-box .block .content {
    position: relative;
    background: rgba(255, 255, 255, 0.05); /* Slightly lighter background for content */
}

.accordion-box .block .content .text {
    position: relative;
    font-size: 16px;
    line-height: 26px;
    color: #ffffff; /* White text for better readability */
}

/* Style for HTML content within answers */
.accordion-box .block .content .text p {
    color: #ffffff;
    margin-bottom: 15px;
}

.accordion-box .block .content .text ul,
.accordion-box .block .content .text ol {
    margin-left: 20px;
    margin-bottom: 15px;
}

.accordion-box .block .content .text li {
    color: #ffffff;
    margin-bottom: 8px;
}

.accordion-box .block .content .text a {
    color: #ffb84d; /* Light orange for links */
    text-decoration: underline;
}

.accordion-box .block .content .text a:hover {
    color: #ffffff;
}

.accordion-box .block .content .text strong,
.accordion-box .block .content .text b {
    color: #ffffff;
    font-weight: 600;
}

.accordion-box .block .content .text em,
.accordion-box .block .content .text i {
    color: #ffffff;
}

/* Contact Section */
.inner-column {
    position: relative;
    padding: 30px;
    background-color: #f5f5f5;
    border-radius: 10px;
}

.theme-btn.btn-style-one {
    position: relative;
    display: inline-block;
    font-size: 16px;
    line-height: 30px;
    color: #ffffff;
    padding: 10px 30px;
    font-weight: 400;
    background-color: #ff8a00;
    border-radius: 5px;
    border: 2px solid #ff8a00;
    text-transform: capitalize;
    transition: all 300ms ease;
}

.theme-btn.btn-style-one:hover {
    background: none;
    color: #ff8a00;
}

/* Responsive */
@media only screen and (max-width: 1023px) {
    .faq-section {
        padding: 70px 0;
    }

    .sec-title-one h3 {
        font-size: 26px;
    }

    .accordion-box .block .acc-btn {
        font-size: 16px;
        line-height: 26px;
        padding: 15px 40px 15px 20px;
    }

    .accordion-box .block .content {
        padding: 0 20px 15px;
    }
}

@media only screen and (max-width: 767px) {
    .inner-column {
        margin-top: 30px;
    }
}
