* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: Arial, sans-serif;
}

body {
  background-color: #070313;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  margin: 0;
}

/* Container */
.container {
  display: flex;
  flex-direction: row-reverse;
  background-color: #1a0a3a;
  border-radius: 10px;
  overflow: hidden;
  max-width: 900px;
  color: #fff;
}

/* Image Section */
.image {
  flex: 1;
  background: url('./images/image-header-desktop.jpg') no-repeat center center/cover;
  filter: hue-rotate(270deg) brightness(0.8);
  min-height: 300px;
}

/* Content Section */
.content {
  flex: 1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.content h1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}

.content h1 span {
  color: #a94bff;
}

.content p {
  font-size: 1rem;
  color: #d1d1d1;
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* Stats Section */
.stats {
  display: flex;
  justify-content: space-between;
  margin-top: 1rem;
}

.stats div {
  text-align: left;
}

.stats h3 {
  font-size: 1.5rem;
  font-weight: bold;
}

.stats p {
  font-size: 0.9rem;
  color: #b0b0b0;
  margin-top: 0.3rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .container {
      flex-direction: column;
      text-align: center;
  }

  .image {
      min-height: 250px;
  }

  .content {
      text-align: center;
      padding: 1.5rem;
  }

  .stats {
      flex-direction: column;
      gap: 1.5rem;
      align-items: center;
  }

  .stats div {
      text-align: center;
  }

  .content h1 {
      font-size: 1.5rem;
  }
}