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);
}

/* =========================
   ECOMMERCE WRAPPER
========================= */
.ecommerce{
    padding: 60px 20px;
    font-family: 'Poppins', sans-serif;
    background: #f6fff9;
}

/* =========================
   HEADER SECTION
========================= */
.section-header{
    max-width: 1100px;
    margin: 0 auto 40px auto;
    text-align: center;
}

.section-header h2{
    font-size: 30px;
    color: #0b3d2e;
    margin-bottom: 15px;
}

.section-header p{
    max-width: 900px;
    margin: 0 auto 15px auto;
    line-height: 1.7;
    color: #333;
}

/* =========================
   TABLE SECTION WRAPPER
========================= */
.ecommerce-table-section{
    max-width: 1100px;
    margin: auto;
    overflow-x: auto; /* important for mobile */
}

/* =========================
   TABLE DESIGN
========================= */
.table-body{
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0,0,0,0.08);
}

/* HEADER */
.table-body thead th{
    background: #0b3d2e;
    color: #fff;
    padding: 15px;
    font-size: 16px;
    text-align: center;
}

/* SECOND HEADER ROW */
.table-body thead tr:nth-child(2) th{
    background: #146b4d;
    font-weight: 600;
}

/* TABLE CELLS */
.table-body td{
    padding: 14px;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 14px;
    color: #333;
}

/* ROW HOVER */
.table-body tbody tr:hover{
    background: #f1f8f4;
    transition: 0.3s;
}

/* =========================
   MOBILE
========================= */
@media(max-width:768px){

    .section-header h2{
        font-size: 22px;
    }

    .table-body td,
    .table-body th{
        font-size: 13px;
        padding: 10px;
    }
}