* {
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}

body {
  margin: 0;
  color: #333;
  line-height: 1.6;
}

.logo-header {
  background: #fff;
  padding: 15px 20px;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
}

.logo-container {
  max-width: 1000px;
  margin: 0 auto;
}

.logo-img {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto;
}

.hero {
  background: #003366;
  color: white;
  padding: 20px 20px 30px 20px;
  text-align: center;
  margin-bottom: 0;
}

.hero h1 {
  margin-top: 0;
}

section {
  max-width: 1000px;
  margin: auto;
  padding: 30px 20px;
}

section + section {
  padding-top: 20px;
}

.hero + section {
  padding-top: 10px;
}

.content p {
  margin-bottom: 15px;
  margin-top: 0;
}

.content p:last-child {
  margin-bottom: 0;
}

.services {
  padding-top: 10px;
}

.services h2 {
  margin-top: 0;
}

.services ul {
  list-style: disc;
  margin-left: 20px;
  margin-bottom: 15px;
  margin-top: 10px;
}

.services h3 {
  margin-top: 20px;
  margin-bottom: 10px;
}

.fees {
  background: #003366;
  color: white;
  text-align: center;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 14px 30px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 6px;
}

.btn-blue {
  background: #0059b3;
  color: white;
}

.btn-blue:hover {
  background: #004080;
}

.btn-enroll {
  display: inline-block;
  margin-top: 30px;
  margin-bottom: 10px;
  padding: 18px 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 20px;
  border-radius: 8px;
  background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
  color: white;
  box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-enroll:hover {
  background: linear-gradient(135deg, #f7931e 0%, #ff6b35 100%);
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.6);
  transform: translateY(-2px);
}

footer {
  background: #111;
  color: white;
  text-align: center;
  padding: 15px;
}
