/* Main section styling */
section.gray {
  width: 100%;

  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f5f5f5;
  padding: 40px 20px;
}

.container-new {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  max-width: 1200px;
  gap: 20px;
}

/* Left content styling with gradient background */
.content-left {
  width: 50%;
  background: linear-gradient(135deg, #6a85b6 0%, #bac8e0 100%);

  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  color: white;
  height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

h2 {
  font-size: 36px;
  color: white;
  margin-bottom: 20px;
}

.gradient-text {
  font-size: 18px;
  font-weight: 400;
  color: white;
}

/* Right form styling */
.form-right {
  width: 50%;
  display: flex;
  justify-content: center;
}

.fillout-form {
  width: 100%;
  height: 500px;
  background: #fff;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  padding: 20px;
  border-radius: 10px;
}

@media only screen and (max-width: 768px) {
  .container-new {
    flex-direction: column;
    /* Stack elements on top of each other */
    align-items: center;
  }

  .content-left,
  .form-right {
    width: 100%;
    /* Make both elements full width on mobile */
  }

  .fillout-form {
    height: auto;
    /* Adjust form height on mobile */
  }

  h2 {
    font-size: 26px;
    color: white;
    margin-bottom: 20px;
  }

  .content-left {
    height: 426px;
  }
}
