.started-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 20px;
  margin-top: 60px;
  background: #f9fafc;
  min-height: 250px;
  position: relative;
  background-image: url("https://www.youngurbanproject.com/wp-content/uploads/2024/11/business-research.jpg");
  background-position: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
}

.started-container::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  right: 0;
  background: rgba(37, 39, 42, 0.9);
  height: 100%;
  width: 100%;
}

.started-container .started-wrapper {
  padding: 40px 50px;
  border-radius: 12px;
  max-width: 1200px;
  width: 1200px;
  text-align: center;
  transition: box-shadow 0.3s ease;
  cursor: default;
  position: relative;
  z-index: 1;
}

.started-container .started-wrapper:hover {
  box-shadow: 0 11px 20px 2px rgba(37, 39, 42, 0.3);
}

.started-container .started-wrapper h2 {
  font-size: 28px;
  color: #fff;
  margin: 0;
  padding: 0;
  font-weight: 600;
}

.started-container .started-wrapper p {
  font-size: 1.1rem;
  color: #fff;
  margin-bottom: 30px;
  line-height: 1.5;
}

.signup-btn {
  text-decoration: none;
  cursor: pointer;
  font-size: 16px;
  background: #0678b1;
  color: #fff;
  font-weight: 500;
  padding: 10px 40px;
  border-radius: 5px;
  border: solid 2px #0678b1;
  transition: 0.6s;
  display: inline-block;
}

.signup-btn:hover {
  background: #fff;
  color: #0678b1;
}

@media only screen and (max-width: 1299px) and (min-width: 360px) {
  .started-container .started-wrapper {
    width: 100%;
    padding: 40px 10px;
    max-width: 100%;
  }

  .started-container .started-wrapper h2 {
    font-size: 22px;
    line-height: 32px;
    margin-bottom: 10px;
  }
}
