.section-13{
    position: relative;
    max-width: 1200px;
    margin: 30px auto;
    width: 100%;
    font-family: "Roboto", sans-serif;
    overflow: hidden;
    transition: all 0.5s ease;
}

.trainer-section {
    text-align: center;
  }
  
  /* Form Wrapper */
  .section-13  .form-wrapper {
    background-color: #FAF8F8;
    padding: 40px;
    border-radius: 8px;
    max-width: 400px;
    margin: 0 auto;
    margin-top: -20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    text-align: left;
  }
  
  /* Form Heading and Description */
  .section-13 .form-heading {
    font-size: 1.8rem;
    color: #000;
    margin-bottom: 10px;
  }
  
  .section-13  .form-description {
    font-size: 1rem;
    color: #000;
    margin-bottom: 20px;
  }
  
  .section-13 .form-divider {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px 0;
  }
  
  /* Contact Form Styles */
  .section-13 .contact-form .form-group {
    margin-bottom: 20px;
  }
  
  .section-13  .contact-form label {
    display: block;
    font-size: 1rem;
    color: #000;
    margin-bottom: 5px;
  }
  
  .section-13 .contact-form .required {
    color: #FF6F00; /* Red color for required fields */
    
  }
  .section-13 .contact-form input {
    width: 100%;
    height: 50px;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 30px;
    box-sizing: border-box;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .section-13 .contact-form input[type="file"] {
    padding: 10px 5px;
    border: none;
    box-shadow: none;
    width: 100%;
  }
  
  .section-13 .contact-form input:focus {
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
    outline: none;
  }
  
  /* Submit Button */
  .section-13 .submit-btn {
    display: inline-block;
    padding: 10px 40px;
    font-size: 1rem;
    color: #fff;
    background-color: #FF6F00;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  }
  
  .section-13 .submit-btn:hover {
    background-color: #FF6F00;
  }
  
/* Message Input Styles */
.section-13 .contact-form textarea {
  width: 100%;
  padding: 10px 20px;
  font-size: 1rem;
  border: none;
  border-radius: 20px;
  box-sizing: border-box;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  resize: none; /* Prevent resizing for consistent design */
}

.section-13 .contact-form textarea:focus {
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.2);
  outline: none;
}


/* 320px */
@media screen and (min-width: 320px) {
    .section-13{
        margin: 150px auto;
    }
}
/* 375px */
@media screen and (min-width: 375px) {
    .section-13{
        margin: 100px auto;
    }
}
/* 768px */
@media screen and (min-width: 768px) {
    .section-13{
        margin: 40px auto;
    }
}