/* Reset + base */
body {
  margin: 0;
  font-family: 'Segoe UI', Arial, sans-serif;
  background-color: #002b5c;
  color: white;
  display: flex;
  justify-content: center;
  align-items: start;
  min-height: 100vh;
  padding: 20px;
  box-sizing: border-box;
}

/* Container */
.container {
  max-width: 600px;
  width: 100%;
  text-align: center;
}

/* Logo */
.logo {
  width: 100%;
  max-width: 300px;
  margin: 0 auto 1rem;
}

/* Headings */
h1 {
  font-size: 2rem;
  margin-bottom: 0.25rem;
}

.tagline {
  color: #cccccc;
  margin-bottom: 1.5rem;
}

/* Buttons */
.links .btn {
  display: block;
  width: 100%;
  margin: 0.75rem auto;
  padding: 1rem;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s;
}

.senior {
  background: #ff6600;
  color: white;
}

.senior:hover {
  background: #ff8533;
}

.junior {
  background: #00bfff;
  color: white;
}

.junior:hover {
  background: #33ccff;
}

/* Locations */
.locations {
  margin-top: 2rem;
  text-align: left;
  font-size: 0.95rem;
}

.locations h2 {
  text-align: center;
  margin-bottom: 1rem;
}

.locations p {
  margin: 0.5rem 0;
  line-height: 1.5;
}

/* Footer */
footer {
  margin-top: 2rem;
  font-size: 0.8rem;
  color: #cccccc;
}

/* Responsive tweaks */
@media (max-width: 480px) {
  h1 {
    font-size: 1.5rem;
  }

  .btn {
    font-size: 1rem;
  }

  .locations p {
    font-size: 0.9rem;
  }
}
