
html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    overflow-x: hidden; /* prevent horizontal scrollbars */
}
.error {
      color: red;
      font-size: 0.9em;
      margin-bottom: 10px;
      display: none;
    }

  .contact-section {
     display: flex;                /* makes left & right sections sit side by side */
   /* justify-content: flex-start;  /* push content to left 
    align-items: flex-start;      /* align items to top 
    */
    gap: 30px;                    /* spacing between sections */
    margin: 0 auto;               /* center whole container */
    max-width: 1200px;    
    
  }
  .contact-info {
    flex: 1;          /* take available space */
    margin-left: 0;   /* ensure no extra left margin */
    padding-left: 0;  /* ensure no extra left padding */
  }
  .contact-info h2 {
    font-weight: 700;
    font-size: 28px;
    border-left: 4px solid #e0b35e;
    padding-left: 12px;
    margin-bottom: 8px;
  }
  .contact-info p {
    font-size: 14px;
    color: #555;
    margin-bottom: 32px;
    max-width: 350px;
  }
  .info-item {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
    color: #2f5c48;
    font-size: 14px;
  }
  .info-item svg {
    width: 22px;
    height: 22px;
    margin-right: 10px;
    flex-shrink: 0;
  }
  .info-text {
    line-height: 1.4;
  }
  form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
  }
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  textarea {
    width: 100%;
    background: #f3f9f9;
    border: none;
    padding: 14px 20px;
    font-size: 14px;
    color: #666;
    border-radius: 5px;
    resize: vertical;
  }
  textarea {
    min-height: 150px;
  }
  button {
    width: 50%; 
   }
  
  @media (max-width: 700px) {
    .contact-section {
      flex-direction: column;
    }
  }
  

    .certification-line {
      border-top: 1px solid #999;
      width: 100%;
      margin: 0 auto 30px auto;
    }

    
    .certifications {
      display: flex;
      gap: 5px;
      align-items: center;
      flex-wrap: wrap;
    }

    .certifications img {
      max-width: 122px; /* Adjust to control image size */
      height: auto;
      
    }
