* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    font-weight: bold;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('img/cons.jpg') no-repeat center center/cover;
    color: white; /* Adjust text color for contrast */
}

/* Navbar Section */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* background: #032a58; */
    color: #fff;
    padding: 1rem 2rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar .logo {
    
height: 50px;
width: auto;

}

.navbar ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
}

.navbar ul li {
    margin: 0;
}

.navbar ul li a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.navbar ul li a:hover {
    color:white;
    text-shadow: 0 0 10px #f35e08,0 0 20px #b84807,0 0 30px #e44c06,0 0 40px #d65a12,0 0 50px #d65a12,0 0 60px #d83e17;
    border-radius:15px;
}

.navbar .menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}

.head {
    text-align: center;
    margin: 20px 0;
    margin-top:60px;
    color: orange;
}

.fee-content {
    display: flex;
    flex-wrap: wrap; /* Make sections stack in smaller screens */
    justify-content: space-between;
    padding: 20px;
}

.fee-text {
    flex: 1;
    padding-right: 20px;
    margin-left:25%;
}

@media (max-width: 768px) {
    .navbar ul {
        display: none;
        flex-direction: column;
        gap: 0.5rem;
        background: #36033d;
        padding: 1rem;
        position: absolute;
        top: 100%;
        right: 0;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    }

    .navbar ul.active {
        display: flex;
    }

    .navbar .menu-toggle {
        display: block;
        color: #fff;
    }


    .fee-content {
        flex-direction: column;
    }

    .fee-text {
        padding-right: 0;
    }
}
