body {
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', sans-serif;
  background-color: #111;
  color: white;
}

header {
  background-color: #000;
  padding: 15px 20px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.header-container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo {
  max-width: 80px;
  margin-bottom: 10px;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
}

.nav-links a:hover {
  color: #00bfff;
}

.hero {
  text-align: center;
  padding: 80px 20px;
}

.hero h1 {
  font-size: 32px;
  margin-bottom: 20px;
}

.hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 30px;
}

.cta-button {
  display: inline-block;
  background-color: #00bfff;
  color: #000;
  padding: 12px 28px;
  border-radius: 8px;
  font-weight: bold;
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #009acd;
}

footer {
  background-color: #000;
  text-align: center;
  padding: 20px 10px;
  font-size: 14px;
}

/* Larger screen layout */
@media screen and (min-width: 600px) {
  .header-container {
    flex-direction: row;
    justify-content: space-between;
    width: 100%;
    max-width: 1000px;
  }

  .nav-links {
    flex-direction: row;
    gap: 20px;
  }

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

  .hero p {
    font-size: 20px;
  }
}

/* Mobile-specific tweaks */
@media screen and (max-width: 599px) {
  .hero {
    padding: 60px 20px;
  }

  .cta-button {
    width: 90%;
    max-width: 280px;
    font-size: 16px;
    padding: 14px 20px;
  }
}

.mobile-break {
  display: inline;
}

@media screen and (min-width: 600px) {
  .mobile-break {
    display: none;
  }
}
