body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.contact-us-layout {
    width: 100%;
    display: flex;
    flex-direction: column;
}

.contact-us-header {
    width: 100%;
    height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    color: white;
    background: url("./assets/doctor.jpg") no-repeat;
    background-position: 60%;
    background-size: cover;
}

.contact-us-header h1,
.contact-us-header p {
    margin-left: 5rem;
}

.contact-us-header h1 {
    font-size: 40px;
}

.contact-us-header p {
    font-size: 22px;
    margin-top: 0;
}

.contact-us-content {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
    background-color: #f9f9f9;
    align-items: center;
  }
  
  .contact-us-content-header h1 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 20px;
    color: #064e3b;
  }
  
  .contact-us-info-grid {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
    justify-content: center;
  }
  
  .contact-us-info-box {
    min-width: 200px;
    text-align: center;
  }
  
  .contact-us-info-box h2 {
    font-size: 20px;
    margin-bottom: 8px;
  }
  
  .contact-us-info-box p {
    font-size: 16px;
    color: #333;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contact-us-info-box p img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  
  .contact-us-content-form {
    background: #fff;
    padding: 30px;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    width: 100%;
    max-width: 600px;
  }
  
  .contact-us-content-form-content h2 {
    margin-bottom: 20px;
    font-size: 24px;
    color: #064e3b;
    text-align: center;
  }
  
  .contact-us-content-form-content label {
    font-weight: 600;
    margin-top: 15px;
  }
  
  .contact-us-content-form-content input,
  .contact-us-content-form-content select,
  .contact-us-content-form-content textarea {
    width: 100%;
    margin-top: 5px;
    padding: 12px;
    font-size: 14px;
    margin-bottom: 10px;
    background-color: #DEE4E0;
    border: none;
    border-bottom: 1px solid #191C1B;
    outline: none;
  }
  .contact-us-content-form-content input,
  .contact-us-content-form-content textarea {
    /* padding-right: 0; */
    width: 96%;
  }
  
  .contact-us-content-form-content textarea {
    resize: vertical;
    min-height: 100px;
  }
  
  .contact-us-content-form-content button {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #006B57;
    color: white;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .contact-us-content-form-content button:hover {
    background-color: #004f40;
  }
  
  @media screen and (max-width: 768px) {
    .contact-us-info-grid {
      flex-direction: column;
      gap: 20px;
    }
  }

  @media screen and (max-width: 950px) {
    .contact-us-content {
      padding: unset;
      padding-top: 100px;
      padding-bottom: 55px;
    }
  }

  @media screen and (max-width: 700px) {
    .contact-us-content-form {
      width: 90%;
    }
  }

  @media screen and (max-width: 560px) {
    .contact-us-content-form {
      width: 80%;
    }

    .contact-us-content-form-content select {
      width: 102%!important;
    }
  }

  @media screen and (max-width: 450px) {
    .contact-us-content-form-content select {
      width: 103%!important;
    }
  }

  @media screen and (max-width: 380px) {
    .contact-us-content-form-content select {
      width: 105%!important;
    }
  }