/*=========================================
    WORDPRESS HOSTING HERO
=========================================*/

.wp-hosting-hero{
    width:100%;
    padding:90px 20px;
    background:linear-gradient(135deg,#f5f9ff 0%,#ffffff 100%);
    overflow:hidden;
}

.wp-hosting-container{
    max-width:1300px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:70px;
}

.wp-hero-content{
    display:flex;
    flex-direction:column;
}

.wp-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    width:fit-content;
    padding:10px 18px;
    border-radius:50px;
    background:#eaf2ff;
    color:#0056ff;
    font-size:14px;
    font-weight:700;
    margin-bottom:22px;
}

.wp-badge i{
    font-size:16px;
}

.wp-hero-content h1{
    margin:0;
    font-size:58px;
    line-height:1.1;
    font-weight:800;
    color:#0b1f4d;
}

.wp-hero-content h1 span{
    color:#0056ff;
}

.wp-hero-content p{
    margin:28px 0;
    font-size:18px;
    line-height:1.8;
    color:#5b6780;
    max-width:600px;
}

.wp-hero-features{
    margin:0;
    padding:0;
    list-style:none;
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
}

.wp-hero-features li{
    display:flex;
    align-items:center;
    gap:12px;
    font-size:16px;
    color:#23314d;
    font-weight:600;
}

.wp-hero-features i{
    color:#00c26e;
    font-size:18px;
}

.wp-hero-buttons{
    display:flex;
    gap:18px;
    margin-top:40px;
    flex-wrap:wrap;
}

.wp-btn-primary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    background:#0056ff;
    color:#fff;
    text-decoration:none;
    border-radius:10px;
    font-weight:700;
    transition:.35s;
    box-shadow:0 15px 35px rgba(0,86,255,.20);
}

.wp-btn-primary:hover{
    background:#0043cc;
    transform:translateY(-3px);
}

.wp-btn-secondary{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:16px 34px;
    border:2px solid #0056ff;
    color:#0056ff;
    text-decoration:none;
    border-radius:10px;
    font-weight:700;
    transition:.35s;
}

.wp-btn-secondary:hover{
    background:#0056ff;
    color:#fff;
    transform:translateY(-3px);
}

.wp-trust-row{
    display:flex;
    gap:30px;
    margin-top:50px;
    flex-wrap:wrap;
}

.wp-trust-item{
    display:flex;
    align-items:center;
    gap:12px;
    color:#23314d;
    font-weight:700;
}

.wp-trust-item i{
    width:46px;
    height:46px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#ffffff;
    color:#0056ff;
    font-size:18px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
}

.wp-hero-image{
    display:flex;
    justify-content:center;
    align-items:center;
}

.wp-hero-image img{
    width:100%;
    max-width:600px;
    height:auto;
    display:block;
    animation:heroFloat 5s ease-in-out infinite;
}

/*=========================================
    Animation
=========================================*/

@keyframes heroFloat{
    0%{
        transform:translateY(0px);
    }
    50%{
        transform:translateY(-12px);
    }
    100%{
        transform:translateY(0px);
    }
}

/*=========================================
    Tablet
=========================================*/

@media (max-width:991px){

    .wp-hosting-hero{
        padding:70px 20px;
    }

    .wp-hosting-container{
        grid-template-columns:1fr;
        gap:50px;
        text-align:center;
    }

    .wp-badge{
        margin:0 auto 22px;
    }

    .wp-hero-content p{
        margin-left:auto;
        margin-right:auto;
    }

    .wp-hero-features{
        grid-template-columns:1fr 1fr;
    }

    .wp-hero-buttons{
        justify-content:center;
    }

    .wp-trust-row{
        justify-content:center;
    }

    .wp-hero-content h1{
        font-size:46px;
    }

    .wp-hero-image{
        order:-1;
    }

}

/*=========================================
    Mobile
=========================================*/

@media (max-width:767px){

    .wp-hosting-hero{
        padding:50px 18px;
    }

    .wp-hosting-container{
        gap:35px;
    }

    .wp-hero-content h1{
        font-size:34px;
    }

    .wp-hero-content p{
        font-size:16px;
        line-height:1.7;
    }

    .wp-hero-features{
        grid-template-columns:1fr;
        text-align:left;
        gap:14px;
    }

    .wp-hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .wp-btn-primary,
    .wp-btn-secondary{
        width:100%;
        padding:15px;
    }

    .wp-trust-row{
        flex-direction:column;
        align-items:flex-start;
        gap:18px;
    }

    .wp-hero-image img{
        max-width:340px;
    }

}

/*=========================================
    FEATURES SECTION
=========================================*/

.wp-features-section{
    padding:100px 20px;
    background:#ffffff;
}

.wp-container{
    max-width:1300px;
    margin:0 auto;
}

.wp-section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 70px;
}

.wp-section-heading span{
    display:inline-block;
    color:#0056ff;
    font-weight:700;
    font-size:15px;
    text-transform:uppercase;
    letter-spacing:1px;
    margin-bottom:15px;
}

.wp-section-heading h2{
    font-size:42px;
    color:#0b1f4d;
    margin-bottom:20px;
    font-weight:800;
}

.wp-section-heading p{
    font-size:17px;
    color:#667085;
    line-height:1.8;
}

.wp-features-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.wp-feature-card{
    background:#ffffff;
    border:1px solid #edf1f7;
    border-radius:18px;
    padding:35px 30px;
    transition:.35s;
    text-align:left;
}

.wp-feature-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 45px rgba(0,0,0,.08);
    border-color:#0056ff;
}

.wp-feature-icon{
    width:70px;
    height:70px;
    border-radius:18px;
    background:#eef4ff;
    display:flex;
    align-items:center;
    justify-content:center;
    margin-bottom:25px;
}

.wp-feature-icon i{
    font-size:28px;
    color:#0056ff;
}

.wp-feature-card h3{
    font-size:22px;
    color:#0b1f4d;
    margin-bottom:15px;
    font-weight:700;
}

.wp-feature-card p{
    color:#667085;
    line-height:1.8;
    font-size:16px;
}

/*========== Tablet ==========*/

@media(max-width:991px){

    .wp-features-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .wp-section-heading h2{
        font-size:36px;
    }

}

/*========== Mobile ==========*/

@media(max-width:767px){

    .wp-features-section{
        padding:70px 18px;
    }

    .wp-features-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .wp-section-heading{
        margin-bottom:45px;
    }

    .wp-section-heading h2{
        font-size:30px;
    }

    .wp-section-heading p{
        font-size:16px;
    }

    .wp-feature-card{
        padding:28px 24px;
    }

}

/*=========================================
    WORDPRESS HOSTING PRICING
=========================================*/

.wp-pricing-section{
    padding:100px 20px;
    background:#f7f9fc;
    overflow:hidden;
}

/*==============================
Section Heading
==============================*/

.wp-pricing-section .wp-section-heading{
    text-align:center;
    max-width:760px;
    margin:0 auto 60px;
}

.wp-pricing-section .wp-section-heading span{
    display:inline-block;
    padding:8px 18px;
    border-radius:50px;
    background:#eaf2ff;
    color:#0056ff;
    font-size:14px;
    font-weight:700;
    margin-bottom:18px;
}

.wp-pricing-section .wp-section-heading h2{
    margin:0;
    font-size:42px;
    color:#0b1f4d;
    font-weight:800;
}

.wp-pricing-section .wp-section-heading p{
    margin-top:20px;
    color:#667085;
    line-height:1.8;
    font-size:17px;
}

/*==============================
Billing Toggle
==============================*/

.billing-toggle{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:18px;
    margin-bottom:60px;
    flex-wrap:wrap;
}

.billing-toggle span{
    font-size:17px;
    font-weight:700;
    color:#0b1f4d;
}

.billing-toggle small{
    display:block;
    margin-top:3px;
    font-size:12px;
    color:#00b65f;
    font-weight:700;
}

.switch{
    position:relative;
    display:inline-block;
    width:64px;
    height:34px;
}

.switch input{
    display:none;
}

.slider{
    position:absolute;
    inset:0;
    background:#dbe5f4;
    border-radius:50px;
    cursor:pointer;
    transition:.35s;
}

.slider::before{
    content:"";
    position:absolute;
    width:26px;
    height:26px;
    left:4px;
    top:4px;
    border-radius:50%;
    background:#ffffff;
    transition:.35s;
    box-shadow:0 5px 15px rgba(0,0,0,.15);
}

.switch input:checked + .slider{
    background:#0056ff;
}

.switch input:checked + .slider::before{
    transform:translateX(30px);
}

/*==============================
Pricing Grid
==============================*/

.pricing-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    align-items:stretch;
}

/*==============================
Pricing Card
==============================*/

.pricing-card{
    position:relative;
    background:#ffffff;
    border:1px solid #e8edf5;
    border-radius:22px;
    padding:38px 30px;
    transition:.35s;
    display:flex;
    flex-direction:column;
}

.pricing-card:hover{
    transform:translateY(-10px);
    border-color:#0056ff;
    box-shadow:0 20px 45px rgba(0,86,255,.12);
}

/*==============================
Featured Card
==============================*/

.pricing-card.featured{
    background:linear-gradient(180deg,#0056ff 0%,#0044d9 100%);
    color:#ffffff;
    transform:scale(1.05);
    border:none;
    box-shadow:0 25px 60px rgba(0,86,255,.30);
}

.pricing-card.featured:hover{
    transform:scale(1.05) translateY(-8px);
}

.popular-tag{
    position:absolute;
    top:-14px;
    left:50%;
    transform:translateX(-50%);
    background:#ffb300;
    color:#111;
    padding:8px 20px;
    border-radius:50px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.5px;
}

.pricing-card h3{
    margin:0 0 25px;
    font-size:26px;
    font-weight:800;
    color:#0b1f4d;
}

.pricing-card.featured h3{
    color:#fff;
}

/*==============================
Price
==============================*/

.price{
    display:flex;
    align-items:flex-start;
    margin-bottom:20px;
}

.currency{
    font-size:24px;
    margin-right:4px;
    font-weight:700;
}

.amount{
    font-size:56px;
    line-height:1;
    font-weight:800;
}

.duration{
    align-self:flex-end;
    margin-left:5px;
    color:#667085;
    font-size:15px;
    margin-bottom:8px;
}

.pricing-card.featured .duration{
    color:#dbe7ff;
}

.free-domain{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:10px 14px;
    border-radius:50px;
    background:rgba(255,255,255,.15);
    color:#fff;
    font-size:14px;
    font-weight:700;
    margin-bottom:25px;
}

/*==============================
Features
==============================*/

.pricing-card ul{
    list-style:none;
    margin:0;
    padding:0;
    flex:1;
}

.pricing-card ul li{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:16px;
    font-size:15px;
    color:#44516b;
}

.pricing-card ul li i{
    color:#00c96b;
    font-size:16px;
}

.pricing-card.featured ul li{
    color:#fff;
}

.pricing-card.featured ul li i{
    color:#8dffb8;
}

/*==============================
Button
==============================*/

.plan-btn{
    display:block;
    width:100%;
    text-align:center;
    text-decoration:none;
    padding:15px;
    margin-top:30px;
    border-radius:12px;
    background:#0056ff;
    color:#fff;
    font-weight:700;
    transition:.35s;
}

.plan-btn:hover{
    background:#0043cc;
}

.pricing-card.featured .plan-btn{
    background:#fff;
    color:#0056ff;
}

.pricing-card.featured .plan-btn:hover{
    background:#f3f6ff;
}

/*==============================
Tablet
==============================*/

@media(max-width:1024px){

    .pricing-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .pricing-card.featured{
        transform:none;
    }

    .pricing-card.featured:hover{
        transform:translateY(-8px);
    }

}

/*==============================
Mobile
==============================*/

@media(max-width:767px){

    .wp-pricing-section{
        padding:70px 18px;
    }

    .wp-pricing-section .wp-section-heading{
        margin-bottom:40px;
    }

    .wp-pricing-section .wp-section-heading h2{
        font-size:30px;
    }

    .wp-pricing-section .wp-section-heading p{
        font-size:16px;
    }

    .billing-toggle{
        gap:12px;
        margin-bottom:40px;
    }

    .billing-toggle span{
        font-size:15px;
    }

    .pricing-grid{
        grid-template-columns:1fr;
        gap:25px;
    }

    .pricing-card{
        padding:30px 24px;
    }

    .pricing-card h3{
        font-size:24px;
    }

    .amount{
        font-size:46px;
    }

    .plan-btn{
        padding:14px;
    }

}

/*=========================================
    PERFORMANCE SECTION
=========================================*/

.wp-performance-section{
    padding:100px 20px;
    background:#ffffff;
    overflow:hidden;
}

.wp-performance-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    gap:80px;
}

/*=========================================
    IMAGE
=========================================*/

.wp-performance-image{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
}

.wp-performance-image img{
    width:100%;
    max-width:560px;
    display:block;
    border-radius:24px;
    animation:performanceFloat 5s ease-in-out infinite;
}

/*=========================================
    FLOATING CARDS
=========================================*/

.floating-card{
    position:absolute;
    display:flex;
    align-items:center;
    gap:15px;
    background:#ffffff;
    padding:16px 18px;
    border-radius:16px;
    box-shadow:0 20px 45px rgba(0,0,0,.10);
    transition:.35s;
    z-index:5;
}

.floating-card:hover{
    transform:translateY(-6px);
}

.floating-card i{
    width:52px;
    height:52px;
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0056ff;
    color:#ffffff;
    font-size:20px;
}

.floating-card strong{
    display:block;
    font-size:18px;
    color:#0b1f4d;
    margin-bottom:3px;
}

.floating-card span{
    color:#6b7280;
    font-size:14px;
}

.card-speed{
    top:40px;
    left:-20px;
}

.card-security{
    bottom:40px;
    right:-20px;
}

/*=========================================
    CONTENT
=========================================*/

.wp-performance-content .section-tag{
    display:inline-block;
    padding:9px 18px;
    border-radius:50px;
    background:#eaf2ff;
    color:#0056ff;
    font-size:14px;
    font-weight:700;
    margin-bottom:22px;
}

.wp-performance-content h2{
    margin:0 0 20px;
    font-size:44px;
    font-weight:800;
    color:#0b1f4d;
    line-height:1.2;
}

.wp-performance-content>p{
    margin:0 0 40px;
    color:#667085;
    font-size:17px;
    line-height:1.8;
}

/*=========================================
    FEATURE LIST
=========================================*/

.performance-list{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:24px;
}

.performance-item{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:22px;
    background:#f8fbff;
    border:1px solid #edf2f8;
    border-radius:18px;
    transition:.35s;
}

.performance-item:hover{
    transform:translateY(-6px);
    border-color:#0056ff;
    box-shadow:0 15px 35px rgba(0,86,255,.08);
}

.performance-item i{
    width:58px;
    height:58px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#0056ff;
    color:#ffffff;
    font-size:22px;
    flex-shrink:0;
}

.performance-item h4{
    margin:0 0 8px;
    font-size:19px;
    color:#0b1f4d;
    font-weight:700;
}

.performance-item p{
    margin:0;
    color:#667085;
    font-size:15px;
    line-height:1.7;
}

/*=========================================
    ANIMATION
=========================================*/

@keyframes performanceFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-12px);
    }

    100%{
        transform:translateY(0);
    }

}

/*=========================================
    TABLET
=========================================*/

@media(max-width:991px){

    .wp-performance-section{
        padding:80px 20px;
    }

    .wp-performance-grid{
        grid-template-columns:1fr;
        gap:60px;
    }

    .wp-performance-content{
        text-align:center;
    }

    .performance-list{
        grid-template-columns:repeat(2,1fr);
        text-align:left;
    }

    .card-speed{
        left:20px;
    }

    .card-security{
        right:20px;
    }

}

/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){

    .wp-performance-section{
        padding:70px 18px;
    }

    .wp-performance-grid{
        gap:45px;
    }

    .wp-performance-content h2{
        font-size:30px;
    }

    .wp-performance-content>p{
        font-size:16px;
        margin-bottom:30px;
    }

    .performance-list{
        grid-template-columns:1fr;
        gap:18px;
    }

    .performance-item{
        padding:20px;
    }

    .performance-item h4{
        font-size:18px;
    }

    .performance-item p{
        font-size:14px;
    }

    .floating-card{
        transform:scale(.88);
    }

    .card-speed{
        top:10px;
        left:0;
    }

    .card-security{
        right:0;
        bottom:10px;
    }

}

/*=========================================
    TRUST & TESTIMONIALS
=========================================*/

.wp-trust-section{
    padding:100px 20px;
    background:linear-gradient(180deg,#f8fbff 0%,#ffffff 100%);
    overflow:hidden;
}

/*=========================================
    STATS GRID
=========================================*/

.wp-stats-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
    margin-top:60px;
    margin-bottom:80px;
}

.wp-stat-card{
    background:#ffffff;
    border:1px solid #e8edf5;
    border-radius:22px;
    padding:35px 25px;
    text-align:center;
    transition:.35s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.wp-stat-card:hover{
    transform:translateY(-8px);
    border-color:#0056ff;
    box-shadow:0 20px 45px rgba(0,86,255,.12);
}

.wp-stat-card i{
    width:72px;
    height:72px;
    margin:0 auto 20px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:20px;
    background:#0056ff;
    color:#ffffff;
    font-size:28px;
}

.wp-stat-card h3{
    margin:0;
    font-size:40px;
    font-weight:800;
    color:#0b1f4d;
}

.wp-stat-card p{
    margin-top:10px;
    color:#667085;
    font-size:16px;
}

/*=========================================
    TESTIMONIAL GRID
=========================================*/

.wp-testimonial-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}

.testimonial-card{
    background:#ffffff;
    border:1px solid #e8edf5;
    border-radius:24px;
    padding:35px;
    transition:.35s;
    display:flex;
    flex-direction:column;
    height:100%;
    box-shadow:0 12px 35px rgba(0,0,0,.05);
}

.testimonial-card:hover{
    transform:translateY(-10px);
    border-color:#0056ff;
    box-shadow:0 25px 50px rgba(0,86,255,.10);
}

/*=========================================
    STARS
=========================================*/

.stars{
    display:flex;
    gap:6px;
    margin-bottom:22px;
}

.stars i{
    color:#ffc107;
    font-size:18px;
}

/*=========================================
    REVIEW
=========================================*/

.testimonial-card p{
    margin:0;
    color:#667085;
    line-height:1.8;
    font-size:16px;
    flex:1;
}

/*=========================================
    CLIENT
=========================================*/

.client{
    display:flex;
    align-items:center;
    gap:16px;
    margin-top:30px;
    padding-top:25px;
    border-top:1px solid #eef2f7;
}

.client img{
    width:65px;
    height:65px;
    border-radius:50%;
    object-fit:cover;
    border:3px solid #0056ff;
}

.client h4{
    margin:0 0 5px;
    color:#0b1f4d;
    font-size:18px;
    font-weight:700;
}

.client span{
    color:#667085;
    font-size:14px;
}

/*=========================================
    TABLET
=========================================*/

@media(max-width:991px){

    .wp-trust-section{
        padding:80px 20px;
    }

    .wp-stats-grid{
        grid-template-columns:repeat(2,1fr);
        margin-bottom:60px;
    }

    .wp-testimonial-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .wp-testimonial-grid .testimonial-card:last-child{
        grid-column:1/-1;
    }

}

/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){

    .wp-trust-section{
        padding:70px 18px;
    }

    .wp-stats-grid{
        grid-template-columns:1fr;
        gap:20px;
        margin-top:40px;
        margin-bottom:45px;
    }

    .wp-testimonial-grid{
        grid-template-columns:1fr;
        gap:20px;
    }

    .wp-stat-card{
        padding:30px 20px;
    }

    .wp-stat-card h3{
        font-size:34px;
    }

    .testimonial-card{
        padding:28px 24px;
    }

    .testimonial-card p{
        font-size:15px;
    }

    .client img{
        width:55px;
        height:55px;
    }

    .client h4{
        font-size:17px;
    }

}

/*=========================================
    FAQ SECTION
=========================================*/

.wp-faq-section{
    padding:100px 20px;
    background:#f8fbff;
    overflow:hidden;
}

.wp-faq-wrapper{
    max-width:900px;
    margin:60px auto 0;
    display:flex;
    flex-direction:column;
    gap:20px;
}

/*=========================================
    FAQ ITEM
=========================================*/

.faq-item{
    background:#ffffff;
    border:1px solid #e7edf5;
    border-radius:18px;
    overflow:hidden;
    transition:.35s;
    box-shadow:0 8px 25px rgba(0,0,0,.04);
}

.faq-item:hover{
    border-color:#0056ff;
    box-shadow:0 18px 40px rgba(0,86,255,.10);
    transform:translateY(-3px);
}

.faq-item.active{
    border-color:#0056ff;
}

/*=========================================
    QUESTION
=========================================*/

.faq-question{
    width:100%;
    background:none;
    border:none;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:26px 30px;
    text-align:left;
    font-size:18px;
    font-weight:700;
    color:#0b1f4d;
    transition:.3s;
}

.faq-question:hover{
    color:#0056ff;
}

.faq-question span{
    flex:1;
    padding-right:20px;
}

.faq-question i{
    width:42px;
    height:42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:50%;
    background:#eef4ff;
    color:#0056ff;
    font-size:16px;
    transition:.35s;
    flex-shrink:0;
}

.faq-item.active .faq-question i{
    background:#0056ff;
    color:#ffffff;
    transform:rotate(180deg);
}

/*=========================================
    ANSWER
=========================================*/

.faq-answer{
    max-height:0;
    overflow:hidden;
    transition:max-height .4s ease;
}

.faq-item.active .faq-answer{
    max-height:300px;
}

.faq-answer p{
    margin:0;
    padding:0 30px 28px;
    color:#667085;
    line-height:1.8;
    font-size:16px;
}

/*=========================================
    TABLET
=========================================*/

@media(max-width:991px){

    .wp-faq-section{
        padding:80px 20px;
    }

    .wp-faq-wrapper{
        margin-top:50px;
    }

}

/*=========================================
    MOBILE
=========================================*/

@media(max-width:767px){

    .wp-faq-section{
        padding:70px 18px;
    }

    .wp-faq-wrapper{
        margin-top:40px;
        gap:16px;
    }

    .faq-question{
        padding:22px 20px;
        font-size:16px;
    }

    .faq-question i{
        width:38px;
        height:38px;
        font-size:14px;
    }

    .faq-answer p{
        padding:0 20px 22px;
        font-size:15px;
        line-height:1.7;
    }

}

html{
scroll-behavior:smooth;
}

#wp-pricing-section{
scroll-margin-top:100px;
}