/* =============================================================================
   Flatsome Child — Main Stylesheet
   Mobile-first. No CSS variables. Static values only.
   ============================================================================= */

/* ── Global ──────────────────────────────────────────────────────────────── */

#footer .absolute-footer {
   display: none;
}

.btn-contact-us-header a {
   padding: 15px 20px !important;
   border: 1px solid #0b183e;
}

#footer .logo-footer {
  max-width: 160px;
}
#footer a {
   color: #fff;
}

/* ── FAQ Accordion ───────────────────────────────────────────────────────── */

#wrapper .accordion {
    border-top: 2px solid #0b183e;
}

#wrapper .accordion-item {
    border-bottom: 1px solid #e0e0e0;
}

#wrapper .accordion-title.plain {
    display: flex;
    align-items: center;
    padding: 6px 10px 6px 20px;
    background: #ffffff;
    text-decoration: none;
    color: #0b183e;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    transition: background 0.2s ease, color 0.2s ease;
    gap: 0;
}

#wrapper .accordion-title.plain:hover {
    background: #f0f4ff;
    color: #0b183e;
    text-decoration: none;
}

#wrapper .accordion-title.plain[aria-expanded="true"] {
    background: #0b183e;
    color: #ffffff;
}

/* Question label badge */
#wrapper .accordion-title.plain span {
    flex: 1;
    order: 1;
}

/* Toggle icon — pushed to the right */
#wrapper .accordion-title.plain .toggle {
    order: 2;
    flex-shrink: 0;
    background: none;
    border: none;
    color: inherit;
    padding: 0;
    position: unset;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.25s ease;
}

#wrapper .accordion-title.plain[aria-expanded="true"] .toggle {
    transform: rotate(180deg);
}

#wrapper .accordion-inner {
    padding: 20px 20px 24px;
    background: #f8f9fc;
    border: 1px solid #0b183e;
}

#wrapper .accordion-inner p:last-child {
    margin-bottom: 0;
}

#wrapper .accordion-inner p {
    font-size: 14px;
    color: #444444;
    line-height: 1.75;
    margin: 0 0 12px 0;
}
#wrapper .img {
   margin-bottom: 0;
}

#footer .stack .img {
    max-width: 30px;
}
.home #wrapper .section a {
    color: #fff !important;
}

#wrapper .home-sec-2 {
    position: relative;
}
#wrapper .home-sec-2::before {
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    height: 0;
    top: 0;
    left: 0;
    box-shadow: 1px 1px 65px 80px #303C5C;
}