/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Aug 27 2026 | 22:28:54 */
/* =====================================================
   LAVON INSURANCE AREA PAGE
   COMPLETE SIMPLE + CLEAN CSS
===================================================== */

.area-page,
.area-page *{
    box-sizing:border-box;
}

.area-page{
    width:100%;
    max-width:1100px;
    margin:0 auto;
    padding:25px 20px 60px;
    font-family:Arial, Helvetica, sans-serif;
    color:#333;
    line-height:1.7;
}


/* =====================================================
   TOP IMAGE
===================================================== */

.area-page .area-hero-image{
    width:100%;
    margin:0 0 35px !important;
    padding:0;
}

.area-page .area-hero-image img{
    display:block;
    width:100% !important;
    max-width:100%;
    height:480px;
    object-fit:cover;
    margin:0;
}


/* =====================================================
   HEADINGS
===================================================== */

.area-page h1{
    margin:0 0 20px;
    color:#173f63;
    font-size:40px;
    line-height:1.25;
    font-weight:700;
}

.area-page h2{
    margin:42px 0 15px;
    color:#173f63;
    font-size:30px;
    line-height:1.3;
    font-weight:700;
}

.area-page h3{
    margin:38px 0 12px;
    color:#173f63;
    font-size:25px;
    line-height:1.35;
    font-weight:700;
}

.area-page h4{
    margin:0 0 10px;
    color:#173f63;
    font-size:19px;
    line-height:1.4;
    font-weight:700;
}


/* =====================================================
   PARAGRAPHS
===================================================== */

.area-page p{
    margin:0 0 16px;
    color:#333;
    font-size:17px;
    line-height:1.75;
}

.area-page strong{
    font-weight:700;
}


/* =====================================================
   CTA SECTION
===================================================== */

.area-page .area-cta{
    width:100%;
    margin:45px 0;
    padding:35px 38px;
    background:#1d496d !important;
    color:#fff !important;
}

.area-page .area-cta h3,
.area-page .area-cta h3 strong{
    margin:0 0 12px !important;
    color:#fff !important;
    font-size:26px;
    line-height:1.3;
}

.area-page .area-cta p,
.area-page .area-cta p strong{
    margin:0 0 20px !important;
    color:#fff !important;
    font-size:17px;
    line-height:1.7;
}


/* CTA BUTTON */

.area-page .area-cta .wp-block-buttons{
    margin:0 !important;
}

.area-page .area-cta .wp-block-button{
    margin:0 !important;
}

.area-page .area-cta .wp-block-button__link,
.area-page .area-cta .wp-element-button{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;

    min-height:48px;

    padding:12px 22px !important;

    background:#fff !important;
    color:#1d496d !important;

    border:1px solid #fff !important;
    border-radius:4px !important;

    font-size:16px !important;
    font-weight:700 !important;
    line-height:1.2;

    text-decoration:none !important;

    transition:
        background .2s ease,
        color .2s ease;
}

.area-page .area-cta .wp-block-button__link:hover,
.area-page .area-cta .wp-element-button:hover{
    background:#f1f4f6 !important;
    color:#173f63 !important;
}


/* =====================================================
   WHY CHOOSE US
===================================================== */

.area-page .why-choose-grid{
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:18px;
    margin:20px 0 45px;
}

.area-page .area-benefit{
    height:100%;
    padding:24px;
    background:#fff;
    border:1px solid #ddd;
}

.area-page .area-benefit h4{
    display:flex;
    align-items:center;
    gap:10px;
    margin:0 0 12px;
}


/* SIMPLE ICON */

.area-page .area-benefit h4::before{
    content:"✓";

    flex:0 0 36px;

    display:flex;
    align-items:center;
    justify-content:center;

    width:36px;
    height:36px;

    background:#eef4f8;
    color:#173f63;

    font-size:17px;
    font-weight:700;
}

.area-page .area-benefit p{
    margin:0;
    color:#555;
    font-size:16px;
    line-height:1.7;
}


/* =====================================================
   FAQ SECTION
===================================================== */

.area-page .faq-list{
    width:100%;
    margin:20px 0 0;
}

.area-page .area-faq{
    width:100%;
    margin:0 0 12px;
    background:#fff;
    border:1px solid #ddd;
}


/* FAQ QUESTION */

.area-page .area-faq summary{
    position:relative;

    display:block;

    padding:18px 55px 18px 20px;

    cursor:pointer;
    list-style:none;

    color:#173f63;
    background:#fff;

    font-size:17px;
    font-weight:700;
    line-height:1.5;
}

.area-page .area-faq summary::-webkit-details-marker{
    display:none;
}

.area-page .area-faq summary::marker{
    display:none;
}


/* FAQ + ICON */

.area-page .area-faq summary::after{
    content:"+";

    position:absolute;
    top:50%;
    right:20px;

    transform:translateY(-50%);

    color:#173f63;

    font-size:25px;
    font-weight:400;
    line-height:1;
}

.area-page .area-faq[open] summary::after{
    content:"−";
}


/* FAQ ANSWER */

.area-page .area-faq-content{
    padding:0 20px 20px;
}

.area-page .area-faq-content p{
    margin:0;
    color:#555;
    font-size:16px;
    line-height:1.7;
}


/* =====================================================
   TABLET
===================================================== */

@media(max-width:900px){

    .area-page{
        padding:20px 18px 50px;
    }

    .area-page .area-hero-image img{
        height:380px;
    }

    .area-page h1{
        font-size:35px;
    }

    .area-page h2{
        font-size:28px;
    }

    .area-page .why-choose-grid{
        grid-template-columns:1fr;
    }
}


/* =====================================================
   MOBILE
===================================================== */

@media(max-width:767px){

    .area-page{
        padding:15px 15px 40px;
    }

    /* IMAGE */

    .area-page .area-hero-image{
        margin-bottom:25px !important;
    }

    .area-page .area-hero-image img{
        height:260px;
    }


    /* TEXT */

    .area-page h1{
        font-size:30px;
        line-height:1.25;
        margin-bottom:18px;
    }

    .area-page h2{
        margin-top:35px;
        font-size:25px;
    }

    .area-page h3{
        margin-top:32px;
        font-size:22px;
    }

    .area-page h4{
        font-size:18px;
    }

    .area-page p{
        font-size:16px;
        line-height:1.7;
    }


    /* CTA */

    .area-page .area-cta{
        margin:35px 0;
        padding:27px 22px;
    }

    .area-page .area-cta h3,
    .area-page .area-cta h3 strong{
        font-size:22px;
    }

    .area-page .area-cta p{
        font-size:16px;
    }

    .area-page .area-cta .wp-block-button__link,
    .area-page .area-cta .wp-element-button{
        padding:12px 18px !important;
        font-size:15px !important;
    }


    /* WHY CHOOSE */

    .area-page .why-choose-grid{
        grid-template-columns:1fr;
        gap:12px;
    }

    .area-page .area-benefit{
        padding:20px;
    }


    /* FAQ */

    .area-page .area-faq summary{
        padding:17px 50px 17px 17px;
        font-size:16px;
    }

    .area-page .area-faq summary::after{
        right:17px;
    }

    .area-page .area-faq-content{
        padding:0 17px 17px;
    }

    .area-page .area-faq-content p{
        font-size:15px;
    }
}