body {
  font-family: Arial, sans-serif;
  background-color: #1b1b1b;
  color: white;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.container {
  max-width: 80%;
  margin: 10vh auto;
}

header {
  text-align: left;
  margin-bottom: 20px;
}

h1 {
  font-size: 24px;
  color: #f0f0f0;
}

.separator-line {
  display: block;
  width: 10vh;
  height: 1px;
  background-color: #f0f0f0;
  margin: 20px 0;
}

nav ul {
  list-style: none;
  padding: 0;
}

nav ul li {
  display: inline;
  margin-right: 20px;
}

nav ul li a {
  color: #f0f0f0;
  text-decoration: none;
}

.main-content {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-bottom: 40px;
}

.text-content {
  max-width: 50%;
  text-align: left;
}

.text-content h2 {
  font-size: 36px;
  margin-bottom: 20px;
}

.text-content p {
  font-size: 16px;
  line-height: 1.5;
}

.image-content img {
  width: 100%;
  max-width: 300px;
  border-radius: 10px;
}

.statistics {
  display: grid;
  justify-content: space-around;
  margin-bottom: 40px;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 20px;
}

.stat-item {
  text-align: left;
}

.stat-item h3 {
  font-size: 36px;
  margin: 0;
}

.stat-item p {
  font-size: 14px;
  color: #cccccc;
}

footer {
  text-align: left;
}

.buttons {
  gap: 20px;
}

.button {
  padding: 10px 20px;
  font-size: 1rem;
  border: 2px solid transparent;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.button.primary {
  border: 2px solid #007BFF;
  background-color: transparent;
  color: #007BFF;
}

.button.primary:hover {
  color: #fff;
}

.button.secondary {
  background-color: transparent;
  color: #007BFF;
}

.button.secondary:hover {
  color: #fff;
}

/* Responsive Design */
@media (max-width: 800px) {
  .main-content {
    flex-direction: column;
    align-items: center;
  }
  
  .text-content {
    max-width: 100%;
    text-align: center;
  }
  
  .statistics {
    flex-direction: column;
    align-items: center;
  }
  
  .stat-item {
    margin-bottom: 20px;
    text-align: center;
  }

  .buttons {
    display: grid;
    text-align: center;
  }
}