.banner-item {
  background-image:
    linear-gradient(rgba(247, 250, 245, 0.84), rgba(247, 250, 245, 0.84)),
    url(../img/Banner/banner-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  width: 100%;
  color: var(--text-strong);
  min-height: 180px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  margin-bottom: 40px;
}

.banner-item h2 {
  margin: 0;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
}

.banner-item .banner-breadcrumb {
  margin: 0;
  color: var(--text-strong);
  font-size: clamp(0.68rem, 2.8vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.float-left,
.float-right {
  float: none;
  width: 100%;
}

.container .float-left {
  margin-bottom: 20px;
}

.container .float-left iframe {
  width: 100%;
  min-height: 380px;
  border: 0;
  border-radius: 12px;
  box-shadow: var(--shadow-soft);
}

.container .float-right {
  background-color: #fff;
  border: 1px solid #e6eadf;
  border-radius: 12px;
  padding: 20px;
  text-align: left;
}

form {
  width: 100%;
  margin: 0;
  font-size: 16px;
}

.form-group-title {
  text-align: left;
  margin: 0 0 12px;
}

.form-group-title h3 {
  margin: 0;
  font-size: 1.25rem;
}

.form-group {
  padding: 0;
  line-height: 1.4;
}

.form-group-item {
  padding: 0;
  margin-bottom: 14px;
}

.form-group-item.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

label {
  display: block;
  margin-bottom: 6px;
  font-weight: 500;
}

input[type="text"],
input[type="email"],
input[type="tel"] {
  padding: 11px 12px;
  width: 100%;
  margin: 0;
  border: 1px solid #cfd5ca;
  border-radius: 10px;
  background-color: #fff;
}

textarea {
  width: 100%;
  min-height: 170px;
  padding: 11px 12px;
  border: 1px solid #cfd5ca;
  border-radius: 10px;
  resize: vertical;
}

#submit-button {
  width: auto;
  min-width: 180px;
  font-weight: 600;
  padding: 10px 20px;
}

@media (max-width: 768px) {
  .form-group-item.form-grid {
    grid-template-columns: 1fr;
  }

  .container .float-left iframe {
    min-height: 300px;
  }

  .banner-item {
    min-height: 160px;
    margin-bottom: 30px;
  }
}
