main {
  background: linear-gradient(135deg, #0f2027 0%, #203a43 50%, #2c5364 100%);
            background-attachment: fixed;
            color: #ffffff;
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
            padding: 20px;
}
main h1{
  padding: 40px;
  text-align: center;
  text-shadow:
        0 0 5px #fff,
        0 0 30px #88edeb
}
       .box {
            max-width: 1100px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Fee Section Grid */
        .fee-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 30px;
            margin-bottom: 40px;
        }

        .glass-panel {
            background: rgba(255, 255, 255, 0.05);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 20px;
            padding: 35px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }

        .glass-panel:hover {
            border-color: #81e6d9;
            transform: translateY(-8px);
            background: rgba(255, 255, 255, 0.08);
        }

        h2 {
            font-size: 1.4rem;
            color: #81e6d9;
            margin-bottom: 25px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        h2::before {
            content: '';
            width: 4px;
            height: 24px;
            background: #81e6d9;
            border-radius: 2px;
        }

        table {
            width: 100%;
            border-collapse: collapse;
            font-variant-numeric: tabular-nums;
        }

        th {
            text-align: left;
            font-size: 0.85rem;
            color: #ffdab9; /* Peachpuff */
            text-transform: uppercase;
            letter-spacing: 1px;
            padding-bottom: 15px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        td {
            padding: 16px 0;
            font-size: 1rem;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .amount {
            text-align: right;
            font-weight: 700;
        }

        /* Policy Section */
        .policy-area {
            background: rgba(0, 0, 0, 0.2);
            border-radius: 20px;
            padding: 40px;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 40px;
            margin-bottom: 60px;
            border: 1px dashed rgba(129, 230, 217, 0.2);
        }

        .policy-item {
            text-align: center;
        }

        .policy-item h3 {
            font-size: 0.9rem;
            color: #81e6d9;
            text-transform: uppercase;
            margin-bottom: 10px;
            letter-spacing: 1px;
        }

        .policy-value {
            font-size: 2rem;
            font-weight: 800;
            display: block;
        }

        .policy-sub {
            font-size: 0.85rem;
            opacity: 0.7;
        }

        .cta-wrap {
            text-align: center;
            padding-bottom: 100px;
        }

        .btn-call {
            display: inline-flex;
            align-items: center;
            background: #81e6d9;
            color: #0f2027;
            padding: 20px 50px;
            border-radius: 12px;
            text-decoration: none;
            font-weight: 800;
            font-size: 1.2rem;
            box-shadow: 0 10px 20px rgba(129, 230, 217, 0.2);
            transition: 0.3s;
        }

        .btn-call:hover {
            transform: scale(1.03);
            box-shadow: 0 15px 30px rgba(129, 230, 217, 0.4);
        }

        @media (max-width: 768px) {
            .policy-area { flex-direction: column; align-items: center; }
            .institute-name { font-size: 2.2rem; }
        }