.connection__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}

.subtitle {
  font-size: 25px;
  color: #ffffff;
  text-align: center;
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .steps {
    grid-template-columns: repeat(1, 1fr);
  }
}

.step {
  text-align: center;
  max-width: 350px;
  width: 100%;
  padding: 25px;
  border-radius: 10px;
  background: #f9f9f9;
  box-shadow: 1px 6px 12px rgba(0, 0, 0, 0.6);
}

.step__number {
  width: 50px;
  height: 50px;
  margin: 0 auto 15px auto;
  background: #871ba4;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: bold;
}

.container__connection {
  display: flex;
  align-items: center;
  justify-items: center;
  flex-direction: column;
}

.connection_info {
  background: #f0e6ff;
  padding: 20px;
  border-radius: 10px;
  max-width: 800px;
  width: 100%;
  text-align: center;
}

.btn {
  background: #871ba4;
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 15px;
}
