/*equalize simple list blocks*/

/*Targets the parent container of the simple list items*/
.items_e80ab9e142b74e83a391cced7315c30c, .items_f4f46f9dd2424f56b9edc15b6773c99a {
   display: flex;
   flex-direction: row;
   flex-wrap: wrap;
   min-height: 100%;
}
/*Targets the child flex items*/
.items_e80ab9e142b74e83a391cced7315c30c > .item, .items_f4f46f9dd2424f56b9edc15b6773c99a > .item {
   display: flex;
   flex-direction: column;
}
/* Link Color */
.block_f4f46f9dd2424f56b9edc15b6773c99a a:{
    color: #FFFFFF!important;
    text-decoration: underline!important;
}

.llpf-faq-section {
    padding: 60px 20px;
    background: #f8fafc;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-container h2 {
    text-align: center;
    margin-bottom: 40px;
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #183b56;
    font-weight: 700;
}

.faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.faq-item {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,.06);
    transition: all .3s ease;
}

.faq-item:hover {
    transform: translateY(-2px);
}

.faq-question {
    width: 100%;
    border: 0;
    background: none;
    cursor: pointer;
    padding: 22px 24px;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: #183b56;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-icon {
    width: 18px;
    height: 18px;
    position: relative;
    flex-shrink: 0;
}

.faq-icon::before,
.faq-icon::after {
    content: "";
    position: absolute;
    background: #0e7490;
    transition: .3s;
}

.faq-icon::before {
    width: 18px;
    height: 2px;
    top: 8px;
    left: 0;
}

.faq-icon::after {
    width: 2px;
    height: 18px;
    left: 8px;
    top: 0;
}

.faq-item.active .faq-icon::after {
    transform: scaleY(0);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height .4s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
    margin: 0;
    color: #475569;
    line-height: 1.8;
    font-size: 1rem;
}

@media (max-width:768px) {

    .faq-question {
        padding: 18px;
        font-size: 1rem;
    }

    .faq-answer p {
        padding: 0 18px 20px;
    }

}

/** For the testimonial cards **/

/* ===========================
   TESTIMONIAL SECTION
=========================== */

.llpf-testimonials {
    padding: 70px 20px;
    background: #ffffff;
}

.testimonial-container {
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-header {
    text-align: center;
    margin-bottom: 50px;
}

.testimonial-header h2 {
    font-size: clamp(2rem, 4vw, 2.8rem);
    color: #183b56;
    font-weight: 700;
    margin-bottom: 15px;
    line-height: 1.2;
}

.testimonial-header p {
    max-width: 700px;
    margin: 0 auto;
    color: #64748b;
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ===========================
   GRID LAYOUT
=========================== */

.testimonial-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

/* Tablet */

@media (min-width: 768px) {
    .testimonial-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Desktop */

@media (min-width: 1200px) {
    .testimonial-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ===========================
   CARD
=========================== */

.testimonial-card {
    background: #ffffff;
    border-radius: 18px;
    padding: 28px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.06);
    border-top: 4px solid #0e7490;
    position: relative;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.09);
}

/* Quote Mark */

.testimonial-card::before {
    content: "❝";
    position: absolute;
    top: 14px;
    right: 18px;
    font-size: 4rem;
    color: rgba(14, 116, 144, 0.08);
    line-height: 1;
    pointer-events: none;
}

/* ===========================
   STARS
=========================== */

.stars {
    color: #f59e0b;
    font-size: 1rem;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

/* ===========================
   REVIEW TEXT
=========================== */

.testimonial-card blockquote {
    margin: 0;
    color: #475569;
    line-height: 1.8;
    font-size: 0.98rem;
    flex-grow: 1;
}

/* ===========================
   AUTHOR
=========================== */

.testimonial-card footer {
    margin-top: 24px;
    padding-top: 18px;
    border-top: 1px solid #e2e8f0;
}

.testimonial-card footer strong {
    color: #183b56;
    font-size: 0.95rem;
    font-weight: 600;
}

/* ===========================
   MOBILE OPTIMIZATION
=========================== */

@media (max-width: 767px) {

    .llpf-testimonials {
        padding: 50px 15px;
    }

    .testimonial-header {
        margin-bottom: 35px;
    }

    .testimonial-header p {
        font-size: 1rem;
    }

    .testimonial-card {
        padding: 22px;
        border-radius: 14px;
    }

    .testimonial-card blockquote {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .testimonial-card::before {
        font-size: 3rem;
        top: 12px;
        right: 14px;
    }
    
    .testimonial-badge {
        display: inline-block;
        background: #ecfeff;
        color: #0e7490;
        padding: 6px 12px;
        border-radius: 999px;
        font-size: .75rem;
        font-weight: 600;
        margin-bottom: 14px;
    }
}