.contact-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: auto;
  }
  .contact-info h2 {
    font-weight: bold;
    margin-bottom: 15px;
  }
  .contact-info p {
    margin-bottom: 20px;
    color: #555;
  }
  .contact-info .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: #333;
  }
  .contact-info .info-item a {
    font-size: 18px;
    margin-right: 10px;
    color: #000;
  }
  .contact-info .social-icons a i{
    display: inline-block;
    margin-right: 10px;
    font-size: 18px;
    color: #ffffff;
    transition: 0.3s;
    cursor: pointer;
    background: black;
    padding: 12px 15px 12px 15px;
    border-radius: 100%;
  }
  .contact-info .social-icons a i:hover {
    color: white;
    background-color: #6ebe44;
  }
  .contact-form {
    background: #888888;
    padding: 20px;
    border-radius: 15px;
    color: #fff;
  }
  .contact-form .form-control,
  .contact-form .form-select {
    border-radius: 5px;
  }
  .contact-form .btn-submit {
    background: #d21414;
    border: none;
    width: 100%;
    color: #fff;
    padding: 10px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
  }
  .contact-form .btn-submit:hover {
    color: white;
    background-color: #6ebe44;
  }
  @media (max-width: 767px) {
    .row > [class*='col-'] {
      margin-bottom: 20px;
    }
  }