*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, sans-serif;
}

body{
  background:#f5f5f5;
}

/* TOP HEADER */
.top-bar{
  background:#004b93;
  color:white;
  padding:12px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
}

.top-left,
.top-right{
  display:flex;
  align-items:center;
  gap:25px;
  flex-wrap:wrap;
}

.top-bar a{
  color:white;
  text-decoration:none;
  font-size:15px;
  transition:0.3s;
}

.top-bar a:hover{
  color:#ffd700;
}

.payment-link{
  color:#ffd700 !important;
  font-weight:bold;
}

/* HEADER */
.header{
  background:#e9e9e9;
  padding:18px 40px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  border-bottom:3px solid #d0d0d0;
}

.logo-section{
  display:flex;
  align-items:center;
  gap:20px;
  flex-wrap:wrap;
}

/* LOGO */
.school-logo{
  width:400px;
  max-width:100%;
  height:auto;
  object-fit:contain;
}

/* ACCESSIBILITY */
.accessibility{
  display:flex;
  align-items:center;
  gap:10px;
}

.accessibility button{
  width:45px;
  height:45px;
  border:none;
  background:white;
  font-size:20px;
  cursor:pointer;
  border-radius:4px;
  box-shadow:0 2px 5px rgba(0,0,0,0.2);
  transition:0.3s;
}

.accessibility button:hover{
  background:#004b93;
  color:white;
}

/* HERO */
.hero{
  background:url('https://images.unsplash.com/photo-1509062522246-3755977927d7?q=80&w=1600&auto=format&fit=crop') center/cover;
  height:500px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:white;
  position:relative;
}

.hero::before{
  content:"";
  position:absolute;
  width:100%;
  height:100%;
  background:rgba(0,0,0,0.5);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:800px;
  padding:20px;
}

.hero-content h2{
  font-size:55px;
  margin-bottom:20px;
}

.hero-content p{
  font-size:22px;
  line-height:1.6;
  margin-bottom:30px;
}

.hero-content a{
  display:inline-block;
  padding:14px 35px;
  background:#b22222;
  color:white;
  text-decoration:none;
  font-size:18px;
  border-radius:5px;
  transition:0.3s;
}

.hero-content a:hover{
  background:#004b93;
}

/* FEATURES */
.features{
  padding:70px 40px;
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
  gap:30px;
  background:white;
}

.feature-box{
  background:#f9f9f9;
  padding:35px;
  text-align:center;
  border-radius:10px;
  transition:0.3s;
  box-shadow:0 3px 10px rgba(0,0,0,0.1);
}

.feature-box:hover{
  transform:translateY(-8px);
}

.feature-box h3{
  color:#004b93;
  margin-bottom:15px;
  font-size:28px;
}

/* FOOTER */
footer{
  background:#002b55;
  color:white;
  text-align:center;
  padding:25px;
  font-size:15px;
}

/* MOBILE */
@media(max-width:768px){

  .school-logo{
    width:280px;
  }

  .hero-content h2{
    font-size:36px;
  }

  .hero-content p{
    font-size:18px;
  }

  .top-bar{
    padding:15px;
  }

  .header{
    padding:20px;
  }
}