*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Poppins',sans-serif;
    color:#555;
    background:#fff;
    line-height:1.8;
}

/* =========================
        HERO SECTION
========================= */

.hero{
    position:relative;
    width:100%;
    height:350px;

    background:url('../images/banner -3Aug2026.png') center center/cover no-repeat;
    display:flex;
    align-items:center;
    justify-content:center;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.18);
}

.hero-content{
    position:relative;
    z-index:2;
}

.hero h1{
    color:#fff;
    font-size:54px;
    font-weight:700;
    letter-spacing:.3px;
}

/* =========================
      CONTENT SECTION
========================= */

.pricing-content{
    /* max-width:1150px; */
    margin:70px auto 0px;
    padding:0 30px;
}

.pricing-content h2{
    font-size: 20px;
    font-weight: 600;
    color: #505050;
    margin-bottom: 18px;
}

.pricing-content p{
    font-size: 18px;
    color: #505050;
    margin-bottom:18px;
    line-height: 24px;
}

.pricing-content h3{
    color: #5795dd;
    font-size: 20px;
    font-weight:500;
    margin:20px 0 10px;
}

.pricing-content ul{
    padding-left:22px;
    margin-bottom:22px;
}

.pricing-content li{
    margin-bottom: 0px;
    font-size: 18px;
}

.plan{
    margin-top:20px;
    text-align: left;
    min-height: auto;
    box-shadow: none;
    transition:none;
}

.plan:hover {
    transform: none;
    z-index: 0;
}

.plan h4{
    color: #5795dd;
    font-size: 20px;
    font-weight:500;
    margin-bottom:8px;
}

.plan p{
    margin-bottom:0;
}
 .head2 {
        min-height:17px;
    }

.priceimage {
    width: 65px;
    border-radius: 10px;
    border: 1px solid #cbc6c6;
    margin: 5px;
}
/* =========================
       RESPONSIVE
========================= */

@media(max-width:991px){

    .hero{
        height:280px;
    }

    .hero h1{
        font-size:42px;
    }

    .pricing-content h2{
        font-size:24px;
    }

    .plan h4{
        font-size:21px;
    }
   

}

@media(max-width:576px) {

    .hero {
        height: 170px;
    }

        .hero h1 {
            font-size: 35px;
            text-align: center;
        }

    .pricing-content {
        margin: 40px auto;
        padding: 0 18px;
    }

        .pricing-content h2 {
            font-size: 22px;
        }

        .pricing-content p,
        .pricing-content li {
            font-size: 15px;
        }
}

@media(max-width:776px){
  .plan h4{
        font-size:23px;
    }
    .head2 {
        min-height:20px;
    }
}

