.background {
  padding: 2rem;
  position: relative;
  width: 100%;
}
.background .container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}
.background .background__image {
  flex: 1;
  text-align: center;
}
.background__image img {
  max-width: 500px;
  border-radius: 10px;
}

.background__content {
  flex: 1;
  /* display: flex;
  align-items: center;
  justify-content: flex-start; */
  gap: 1rem;
  /* text-align: center; */
  position: relative;
}

.background p {
  width: 100%;
  line-height: 36px;
  font-size: 18px;
  color: #333;
  transition: opacity 0.3s ease;
  text-align: justify;
}

.background h2 {
  font-size: 46px;
  margin-bottom: 3rem;
}

.nav-btn {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  font-size: 1.5rem;
  border-radius: 50%;
  transition: background 0.3s;
}
.nav-btn:hover {
  background: #ddd;
}

/* Responsif */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
    padding: 5% 0;
  }
  .background__content {
    gap: 0.5rem;
  }
  .background {
    padding: 0 30px;
  }

  .background__image img {
    max-width: 19rem;
    height: 250px;
  }

  .background h2 {
    margin: 20px 0;
}
}


