/* ==========================
   GENERAL
========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Noto Sans Devanagari', sans-serif;
    background:#f5f5f5;
    color:#243b6b;
}

/* ==========================
   MAIN CONTAINER
========================== */

.container{
    width:90%;
    max-width:1400px;
    margin:auto;
    padding:60px 20px;
    display:flex;
    justify-content:space-between;
    gap:80px;
}

/* ==========================
   LEFT SECTION
========================== */

.left-section{
    flex:2;
}

.page-title{
    font-size:58px;
    font-weight:700;
    color:#122b63;
    margin-bottom:30px;
}

.content-text p{
    font-size:22px;
    color:#445579;
    line-height:2.3;
    margin-bottom:20px;
}

.bottom-note{
    text-align:center;
    margin-top:80px;
    font-size:22px;
    font-style:italic;
    color:#243b6b;
}

.bottom-note a{
    color:#243b6b;
    text-decoration:underline;
}

/* ==========================
   RIGHT SECTION
========================== */

.right-section{
    flex:1;
}

.sidebar-title{
    text-align:center;
    font-size:34px;
    font-weight:700;
    color:#122b63;
    margin-bottom:30px;
}

/* ==========================
   SERVICE MENU
========================== */

.service-menu{
    list-style:none;
}

.service-menu li{
    margin-bottom:12px;
}

.service-menu li a{
    display:block;
    text-decoration:none;
    padding:16px 20px;
    font-size:26px;
    color:#314d7a;
    transition:all .3s ease;
}

.service-menu li a:hover{
    background:#ececec;
}

.service-menu li.active a{
    background:#ececec;
    color:#4c7df0;
    font-weight:500;
}

.service-menu i{
    margin-right:10px;
}

/* ==========================
   RESPONSIVE
========================== */

@media(max-width:991px){

    .container{
        flex-direction:column;
    }

    .page-title{
        font-size:42px;
    }

    .content-text p{
        font-size:18px;
    }

    .sidebar-title{
        font-size:28px;
    }

    .service-menu li a{
        font-size:20px;
    }
}

@media(max-width:576px){

    .page-title{
        font-size:34px;
    }

    .content-text p{
        font-size:16px;
    }

    .bottom-note{
        font-size:16px;
    }

    .service-menu li a{
        font-size:18px;
        padding:12px 15px;
    }
}

/*--------------------------  mahiti adhikar----------------------------------------------------*/
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'Noto Sans Devanagari', sans-serif;
    background:#fff;
    color:#333;
}

/* Main Container */
.container{
    width:95%;
    max-width:1600px;
    margin:0 auto;
    padding:20px 30px 50px;
}

/* Heading */
.page-title{
    text-align:center;
    font-size:32px;
    font-weight:700;
    color:#111;
    margin-bottom:35px;
}

/* Intro Paragraph */
.intro-text{
    font-size:18px;
    line-height:1.8;
    margin-bottom:20px;
}

/* Table */
.table-wrapper{
    width:100%;
    overflow-x:auto;
}

table{
    width:100%;
    border-collapse:collapse;
    table-layout:fixed;
}

thead{
    background:#1f295b;
}

thead th{
    color:#fff;
    text-align:left;
    padding:18px;
    font-size:18px;
    font-weight:600;
}

tbody td{
    padding:22px 18px;
    font-size:18px;
    line-height:1.7;
    vertical-align:top;
}

tbody tr:nth-child(even){
    background:#f2f2f2;
}

/* Column Width */
th:nth-child(1),
td:nth-child(1){
    width:25%;
}

th:nth-child(2),
td:nth-child(2){
    width:25%;
}

th:nth-child(3),
td:nth-child(3){
    width:35%;
}

th:nth-child(4),
td:nth-child(4){
    width:15%;
}

/* Blue Line */
.separator{
    height:2px;
    background:#2e66ff;
    margin:25px 0;
}

/* Description */
.description{
    font-size:18px;
    line-height:1.8;
    margin-bottom:35px;
}

/* Section Title */
.section-title{
    font-size:28px;
    font-weight:700;
    margin-bottom:25px;
    color:#111;
}

/* Bullet List */
.info-list{
    padding-left:25px;
}

.info-list li{
    font-size:18px;
    line-height:1.9;
    margin-bottom:5px;
}

/* Responsive */
@media(max-width:992px){

    .page-title{
        font-size:26px;
    }

    .intro-text,
    .description,
    .info-list li,
    thead th,
    tbody td{
        font-size:16px;
    }
}

@media(max-width:768px){

    .container{
        width:98%;
        padding:15px;
    }

    .page-title{
        font-size:22px;
    }

    .section-title{
        font-size:22px;
    }

    .intro-text,
    .description,
    .info-list li{
        font-size:15px;
    }

    thead th,
    tbody td{
        padding:12px;
    }
}