* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background: #0d1025;
  color: #fff;
}

.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 80px;
}

.logo span {
  color: #2f7cf6;
}

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #bbb;
}

.join-btn {
  padding: 10px 22px;
  border-radius: 20px;
  border: 1px solid #2f7cf6;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 60px 80px;
}

.hero-text {
  max-width: 480px;
}

.hero-text h1 {
  font-size: 48px;
  line-height: 1.2;
}

.hero-text span {
  color: #2f7cf6;
}

.hero-text p {
  margin: 20px 0;
  color: #aaa;
}

.start-btn {
  padding: 12px 28px;
  border: none;
  border-radius: 25px;
  background: #2f7cf6;
  color: white;
  cursor: pointer;
}

.hero-image {
  position: relative;
}

.hero-image img {
  width: 360px;
}


.bottom-text {
  text-align: center;
  margin-top: 50px;
}

.bottom-text h2 {
  font-size: 32px;
}

.bottom-text p {
  color: #aaa;
  margin-top: 10px;
}
