<style>
        /* Maintain existing styles from template */
        top-bar {
            background-color: #EE0E82;
            color: white;
            padding: 8px 0;
            font-size: 14px;
        }
        top-bar a {
            color: white;
            text-decoration: none;
            margin-right: 15px;
            padding:55px;
        }
        .navbar {
            background-color: #060270;
            box-shadow: 0 2px 4px rgba(0,0,0,0.1);
            height:auto;
            margin-top: 10px;
        }
        .navbar-brand img {
            height: 70px;
        }
        .nav-link {
            color: #FE9900;
            font-weight: 500;
        }
        .section {
            padding: 60px 0;
        }
        .section-title {
            color: #003366;
            margin-bottom: 30px;
            position: relative;
            padding-bottom: 15px;
        }
        .section-title:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 3px;
            background-color: #ff9900;
        }
        .feature-box {
            text-align: center;
            padding: 30px 20px;
            border-radius: 5px;
            transition: all 0.3s;
            margin-bottom: 20px;
            background-image: linear-gradient(to right bottom, #e2fd81, #ffe582, #ffd096, #ffc2af, #f6bcc1);
        }
        .feature-box:hover {
            transform: translateY(-10px);
            box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        }
        .feature-icon {
            font-size: 50px;
            color: #003366;
            margin-bottom: 20px;
        }
        footer {
            background-color:#060270;
            color: white;
            padding: 20px 0 20px;
        }
        footer h5 {
            color: #ff9900;
            margin-bottom:5px;
        }
        footer a {
            color: #ddd;
            text-decoration: none;
            display: block;
            margin-bottom: 5px;
        }
        footer a:hover {
            color: white;
        }
        .social-icons a {
            display: inline-block;
            margin-right: 15px;
            font-size: 20px;
        }
        .copyright {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 15px;
            margin-top: 10px;
            text-align: center;
        }
        
        /* New styles for fees page */
        .hero-banner {
            background: linear-gradient(rgba(0,2,70,0.8), rgba(238,14,130,0.1)),
                        url('https://images.pexels.com/photos/6801639/pexels-photo-6801639.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1');
            background-size: cover;
            background-position: center;
            color: white;
            padding: 100px 0;
            text-align: center;
            margin-top: 20px;
        }
        .pricing-card {
            border: none;
            border-radius: 10px;
            transition: all 0.3s;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }
        .pricing-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 15px 30px rgba(0,0,0,0.2);
        }
        .pricing-header {
            background-color: #060270;
            color: white;
            padding: 20px;
            border-radius: 10px 10px 0 0;
        }
        .pricing-body {
            padding: 30px;
        }
        .price {
            font-size: 2.5rem;
            font-weight: 700;
            color: #EE0E82;
        }
        .payment-method {
            text-align: center;
            padding: 20px;
            border-radius: 5px;
            background-color: #f9f9f9;
            height: 100%;
        }
        .payment-icon {
            font-size: 40px;
            margin-bottom: 15px;
            color: #060270;
        }
        .table th {
            background-color: #060270;
            color: white;
        }
        .table-hover tbody tr:hover {
            background-color: rgba(238,14,130,0.1);
        }
        .savings-badge {
             background-image: linear-gradient(to right bottom, #e2fd81, #ffe582, #ffd096, #ffc2af, #f6bcc1);
            color: white;
            padding: 5px 10px;
            border-radius: 20px;
            font-weight: bold;
            font-size: 0.8rem;
        }
        .illustration-img {
            max-width: 100%;
            height: auto;
            animation: float 3s ease-in-out infinite;
        }
        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }
        .partners-slider {
            background-color: #f5f5f5;
            padding: 30px 0;
            overflow: hidden;
        }
        .partner-logo {
            height: 60px;
            margin: 0 30px;
            filter: grayscale(100%);
            opacity: 0.7;
            transition: all 0.3s;
        }
        .partner-logo:hover {
            filter: grayscale(0%);
            opacity: 1;
        }
        .accordion-button:not(.collapsed) {
             background-image: linear-gradient(to right bottom, #e2fd81, #ffe582, #ffd096, #ffc2af, #f6bcc1);
            color: #060270;
            font-weight: bold;
        }
        .accordion-button:focus {
            box-shadow: 0 0 0 0.25rem rgba(238,14,130,0.25);
        }
    </style>