body{
    margin: 0;
    font-family: Arial, sans-serif;
    color: #333;
    background-color: #f9f9f9;
}

.logo{
    display: flex;
    align-items: center;
}

header{
    background: #003366;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo img{
    height: 50px;
    margin-right: 15px;
}

header h1{
    margin: 0;
    font-size: 1.8rem;
}

nav ul{
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav ul li a{
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s;
}

nav ul li a:hover{
    background: #00509e;
}

.hero{
    background: url('Images/college.png') no-repeat center center/cover;
    color: white;
    text-align: center;
    height: 82vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-content{
    background: rgb(0, 0, 0, 0.5);
    padding: 20px;
    border-radius: 10px;
}

.hero h2{
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.hero p{
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.cta-button{
    background: #ff9800;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background 0.3s;
    text-decoration: none;
}

.cta-button:hover{
    background: #e68900;
}

footer{
    background: #003366;
    color: white;
    text-align: center;
    padding: 15px 0;
    font-size: 0.9rem;
}