 *{
            margin:0;
            padding:0;
            box-sizing:border-box;
            font-family:Arial,sans-serif;
        }

        body{
            background:#f4f7fb;
            color:#111827;
        }

        /* HERO SECTION */

        .hero{
            width:100%;
            min-height:50vh;
            background:
            linear-gradient(rgba(15,23,42,0.82),rgba(15,23,42,0.82)),
            url('https://images.unsplash.com/photo-1523050854058-8df90110c9f1');
            background-size:cover;
            background-position:center;
            display:flex;
            justify-content:center;
            align-items:center;
            text-align:center;
            padding:20px;
        }

        .hero-content{
            max-width:850px;
            color:white;
        }

        .hero-content span{
            display:inline-block;
            background:#2563eb;
            padding:10px 24px;
            border-radius:40px;
            margin-bottom:25px;
            font-size:14px;
            font-weight:600;
        }

        .hero-content h1{
            font-size:65px;
            margin-bottom:20px;
        }

        .hero-line{
            width:180px;
            height:4px;
            background:#3b82f6;
            margin:20px auto;
            border-radius:10px;
        }

        .hero-content p{
            font-size:18px;
            line-height:1.8;
            color:#e5e7eb;
        }

        /* FEE SECTION */

        .fee-section{
            width:100%;
            padding:80px 15px;
        }

        .container{
            max-width:1500px;
            margin:auto;
        }

        /* TABLE BOX */

        .table-box{
            background:white;
            border-radius:20px;
            overflow:hidden;
            box-shadow:0 12px 35px rgba(0,0,0,0.08);
        }

        .table-responsive{
            width:100%;
            overflow-x:auto;
        }

        table{
            width:100%;
            border-collapse:collapse;
            min-width:1200px;
        }

        table th{
            background:#f8fafc;
            color:#1e3a8a;
            padding:20px 15px;
            text-align:center;
            border:1px solid #dbe4f0;
            font-size:18px;
        }

        table td{
            padding:18px 15px;
            text-align:center;
            border:1px solid #dbe4f0;
            font-size:17px;
            color:#374151;
        }

        table tr:hover{
            background:#f9fbff;
        }

        /* TOTAL ROW */

        .total-row{
            background:#f1f5ff;
            font-weight:700;
        }

        .total-row td{
            color:#1e3a8a;
            font-size:18px;
        }

        /* NOTE */

        .note-box{
            margin-top:25px;
            background:#eaf2ff;
            padding:18px 22px;
            border-radius:14px;
            color:#1e3a8a;
            font-size:15px;
            line-height:1.7;
        }

        .note-box strong{
            margin-right:8px;
        }

        /* RESPONSIVE */

        @media(max-width:992px){

            .hero-content h1{
                font-size:48px;
            }
        }

        @media(max-width:768px){

            .hero{
                min-height:40vh;
            }

            .hero-content h1{
                font-size:34px;
            }

            .hero-content p{
                font-size:15px;
            }

            table th,
            table td{
                font-size:14px;
                padding:14px 10px;
            }

            .fee-section{
                padding:60px 10px;
            }
        }
