body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  color: #1a1a1a;
  background: #ffffff;
  line-height: 1.6;
}

/* GENERAL CONTAINER */

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  text-align: center;
}

/* HERO */

.hero {
  position: relative;
  background: #123f5a;
  color: white;
  padding: 120px 20px 100px 20px;
  text-align: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.07;
  pointer-events: none;
}

.hero-background img {
  width: 400px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.logo {
  width: 280px;
  margin-bottom: 30px;
}

.hero h1 {
  font-size: 34px;
  font-weight: 500;
  margin-bottom: 20px;
}

.hero-subtitle {
  font-size: 18px;
  font-weight: 300;
  margin-bottom: 35px;
  opacity: 0.9;
}

/* BUTTONS */

.buttons {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.btn-primary {
  background: #9fb3a8;
  color: #123f5a;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 4px;
  font-weight: 500;
}

.btn-secondary {
  border: 1px solid white;
  color: white;
  padding: 12px 28px;
  text-decoration: none;
  border-radius: 4px;
}

/* SECTIONS */

section {
  padding: 80px 0;
}

.section-alt {
  background: #f4f4f4;
}

h2 {
  font-size: 26px;
  color: #123f5a;
  margin-bottom: 20px;
  font-weight: 500;
}

.highlight {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}

ul {
  list-style-position: inside;
  padding: 0;
  margin: 20px 0;
}

.live-status {
  margin-top: 20px;
  font-weight: 500;
  color: #123f5a;
}

/* FOOTER */

footer {
  background: #123f5a;
  color: white;
  padding: 40px 0;
  font-size: 14px;
}

/* RESPONSIVE */

@media (max-width: 768px) {

  .hero {
    padding: 90px 20px 70px 20px;
  }

  .hero-background img {
    width: 250px;
  }

  .logo {
    width: 220px;
  }

  .hero h1 {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 16px
 }
    .buttons a {
  min-width: 180px;
  text-align: center;
}

