.section-contact{
  padding: 30px 0;
}
/* two-column layout */
    .box-benefits {
      display: grid;
      grid-template-columns: 420px 1fr;
      gap: 18px;
      align-items: stretch;
       margin-bottom: 50px;
    }

    /* left list column */
    .box-imgBx {
      background: #fff;
      border: 1px solid #e6e6e8;
      border-radius: 6px;
      overflow: hidden
    }

    .benefits {
      padding: 26px 22px;
      border-bottom: 1px solid #eee;
      cursor: pointer;
      display: block;
      transition: background .18s, transform .12s;
      outline: none
    }

    .benefits:last-child {
      border-bottom: 0
    }

    .benefits:hover {
      background: #fafafa;
      transform: translateY(-2px)
    }

    .benefits:focus {
      box-shadow: 0 0 0 3px rgba(34, 122, 255, .08)
    }

    .benefits h4 {
      margin: 0 0 8px;
      font-size: 18px;
      font-weight: 700;
      color: #111
    }

    .benefits__contact {
      font-size: 14px;
      color: #333;
      line-height: 1.5;
      margin: 6px 0
    }

    .benefits__contact i {
      color: #c0392b;
      margin-right: 8px;
      width: 16px;
      text-align: center
    }

    .benefits__contact strong {
      font-weight: 700;
      margin-right: 6px
    }

    .benefits .benefits__contact span {
      color: #444
    }

    /* active */
    .benefits.active {
      background: #f2f6f9;
      border-left: 4px solid #d33;
      padding-left: 18px
    }

    .benefits.active h4 {
      color: #111
    }

    /* right map column */
    .box-content {
      min-height: 420px;
      border: 1px solid #e6e6e8;
      border-radius: 6px;
      overflow: hidden;
      background: #fff;
      position: relative
    }

    .contentBx {
      width: 100%;
      height: 100%;
      display: none
    }

    .contentBx.active {
      display: block
    }

    /* responsive iframe: keep full width and flexible height */
    .contentBx iframe {
      width: 100%;
      height: 620px;
      border: 0;
      display: block
    }

    
.contact-form__header {
    text-align: center;
    margin-bottom: 40px;
  }

  .contact-form__subtitle {
    font-size: 15px;
    color: #333;
    margin-bottom: 8px;
    font-weight: 400;
  }

  .contact-form__title {
    font-size: 26px;
    color: #1a1a1a;
    font-weight: 600;
    line-height: 1.3;
  }



  /* Block: form-field */
.contact-form{
  max-width: 800px;
  margin: 0 auto 50px;
}
  .contact-form__field {
    margin-bottom: 18px;
  }

  .contact-form__label {
    display: block;
    font-size: 18px;
    color: #1a1a1a;
    margin-bottom: 5px;
    font-weight: 400;
  }

  .contact-form__input {
    width: 100%;
    padding: 7px 14px;
    font-size: 16px;
    height: 40px;
    border: 1px solid #d1d1d1;
    border-radius: 6px;
    background-color: #fff;
    color: #1a1a1a;
    transition: border-color 0.3s ease;
  }

  .contact-form__input::placeholder {
    color: #999;
  }

  .contact-form__input:focus {
    outline: none;
    border-color: #666;
  }

  /* Block: submit-button */
 .contact-form__wbtn {
    text-align: center;
    margin-top: 40px;
  }

 .contact-form__btn {
    padding: 10px 38px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    background-color: #000;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  }

 .contact-form__btn:hover {
    background-color: #333;
    transform: translateY(-2px);
  }

 .contact-form__btn:active {
    transform: translateY(0);
  }
/* small screens: stack */
    @media (max-width:980px) {
      .box-benefits {
        grid-template-columns: 1fr;
        gap: 12px
      }

      .box-imgBx {
        order: 2
      }

      .box-content {
        order: 1
      }

      .contentBx iframe {
        height: 420px
      }

      .benefits {
        padding: 18px
      }
    }