body{
    margin: 0;
    padding: 0;
}

.page-banner{
    width: 100%;
    padding: 20px 0;
    display: flex;
    justify-content: center;
    background: #f6fff9;
     margin-top: 50px;   /* small clean gap from navbar */
}

.page-banner img{
    width: 95%;
    height: auto;
    display: block;

    border-radius: 12px;
    border: 4px solid #0b3d2e;
    box-shadow: 0 6px 18px rgba(0,0,0,0.15);
}

/* =========================
   FAQ BLOGS SECTION
========================= */

.faq-blogs{
    background: #f6fff9;
    padding: 70px 20px;
    font-family: 'Poppins', sans-serif;
}

/* =========================
   SECTION HEADER
========================= */

.faq-blogs .section-header{
    max-width: 900px;
    margin: 0 auto 50px;
    text-align: center;
}

.faq-blogs .section-header h2{
    font-size: 40px;
    font-weight: 700;
    color: #0b3d2e;
    margin-bottom: 18px;
}

.faq-blogs .section-header p{
    font-size: 16px;
    line-height: 1.9;
    color: #444;
}

/* =========================
   BLOG CARD
========================= */

.faq-blogs .blog-card{
    border-radius: 18px;
    overflow: hidden;
    transition: 0.35s ease;
    background: #fff;
    border: none;
    box-shadow: 0 6px 20px rgba(0,0,0,0.06);
}

.faq-blogs .blog-card:hover{
    transform: translateY(-8px);
    box-shadow: 0 14px 35px rgba(0,0,0,0.12);
}

/* =========================
   BLOG IMAGE
========================= */

.faq-blogs .card-img-top{
    width: 100%;
    height: 230px;
    object-fit: cover;
    border-bottom: 3px solid #198754;
}

/* =========================
   BLOG BODY
========================= */

.faq-blogs .card-body{
    padding: 24px;
}

/* =========================
   BLOG TITLE
========================= */

.faq-blogs .card-title{
    font-size: 21px;
    font-weight: 700;
    line-height: 1.5;
    color: #198754;
    margin-bottom: 14px;
}

/* =========================
   BLOG TEXT
========================= */

.faq-blogs .card-text{
    font-size: 14px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

/* =========================
   DATE
========================= */

.faq-blogs .text-muted{
    font-size: 13px;
    color: #777 !important;
}

/* =========================
   FOOTER TEXT
========================= */

.faq-blogs .footer-text{
    font-size: 13px;
    line-height: 1.7;
    color: #666;
}

/* =========================
   BUTTON
========================= */

.faq-blogs .btn-success{
    background: linear-gradient(135deg, #198754, #0b3d2e);
    border: none;
    border-radius: 10px;
    padding: 12px 22px;
    font-size: 14px;
    font-weight: 600;
    transition: 0.3s ease;
}

.faq-blogs .btn-success:hover{
    background: linear-gradient(135deg, #0b3d2e, #198754);
    transform: scale(1.03);
}
/* =========================
   PAGINATION FIX
========================= */

.faq-blogs .pagination{
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;

    list-style: none;
    padding-left: 0;
}

/* PAGE ITEM */
.faq-blogs .page-item{
    display: inline-flex;
}

/* LINKS */
.faq-blogs .page-link{
    display: flex;
    align-items: center;
    justify-content: center;

    min-width: 45px;
    height: 45px;

    border-radius: 10px;
    border: none;

    background: #fff;
    color: #0b3d2e;

    font-weight: 600;
    text-decoration: none;

    box-shadow: 0 3px 10px rgba(0,0,0,0.06);

    transition: 0.3s ease;
}

/* HOVER */
.faq-blogs .page-link:hover{
    background: #0b3d2e;
    color: #fff;
}

/* ACTIVE */
.faq-blogs .page-item.active .page-link{
    background: #198754;
    color: #fff;
}

/* DISABLED */
.faq-blogs .page-item.disabled .page-link{
    opacity: 0.5;
    pointer-events: none;
}

/* =========================
   MOBILE
========================= */

@media(max-width:768px){

    .faq-blogs{
        padding: 50px 15px;
    }

    .faq-blogs .section-header h2{
        font-size: 30px;
    }

    .faq-blogs .section-header p{
        font-size: 14px;
    }

    .faq-blogs .card-img-top{
        height: 200px;
    }

    .faq-blogs .card-title{
        font-size: 18px;
    }

    .faq-blogs .card-body{
        padding: 18px;
    }
}