.contact-header {
    width: 100%;
    background-color: var(--primary-color);
    height: 50vh;
    text-align: center;
    padding: 2rem;
    position: relative;
    z-index: 1;
  }
  
  .contact-header h2 {
    color: var(--white-color);
    font-size: 4rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
  }
  .contact-header p {
    font-size: 1.5rem;
    color: var(--white-color);
  }
  
  .contact-container {
      display: flex;
      flex-wrap: wrap-reverse;
      background: white;
      border-radius: 10px;
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
      width: 70%;
      height: fit-content;
      margin: -8rem auto 2rem;
      z-index: 2;
      position: relative;
      overflow: hidden;
      border: 2px solid #ddd;
      gap: 2rem;
  
    }
    .contact-form{
      display: flex;
      align-items: start;
      justify-content: center;
      flex-direction: column;

    }
    .contact-form, .contact-info {
      width: calc((100% - 2rem) / 2);
      padding: 2rem;
    }
    
    .contact-form h3 {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #333;
    }
  
    .contact-form form input,
    .contact-form form textarea {
      width: 100%;
      padding: 0.75rem;
      margin-bottom: 1rem;
      border: 1px solid #ccc;
      border-radius: 5px;
    }
  
    .contact-form form button {
      width: 100%;
      padding: 0.75rem;
      background-color: var(--primary-color);
      color: #fff;
      border: none;
      font-weight: bold;
      font-size: 1rem;
      cursor: pointer;
      border-radius: 5px;
      transition: background-color 0.3s;
    }
  
    .contact-form form button:hover {
      background-color: #1258a8;
    }
  
    .contact-info {
      text-align: left;
      border: 2px solid #ddd;
    }
  
    .contact-info ul {
      list-style: none;
      padding: 0;
      margin-top: 1rem;
      display: flex;
      flex-wrap: wrap;
      gap:1rem 6rem ;
    }
  
    .contact-info li {
      margin-bottom: 1.2rem;
      font-size: 0.95rem;
      color: #333;
      display: flex;
      flex-direction: column;
      /* gap: .2rem; */
    }
    .contact-info ul li a{
      text-decoration: none;
      color: black;
    }
    .contact-info li strong{
      display: flex;
      gap: 1rem;
      font-weight: 600;
    }
    .contact-info li strong i{
      color: var(--primary-color);
      /* font-size: 1.2rem; */
    }
    .contact-illustration {
      width: 100%;
      max-width: 250px;
      display: block;
      margin: 0 auto 1rem;
    }
  
  

    @media only screen and (max-width : 1000px){
      .contact-header h2 {
        font-size: 3.5rem;
      }

      .contact-form, .contact-info {
        width: 100% !important;
        padding: 2rem;
      }

      .contact-container{
        width: 80%;
      }
    }

    @media only screen and (max-width : 800px){
      .contact-header h2 {
        font-size: 3rem;
      }
      .contact-container{
        width: 85%;
      }
    }

    @media only screen and (max-width : 700px){
      .contact-header h2 {
        font-size: 2.5rem;
      }
      .contact-header p {
        font-size: 1.4rem;
        color: var(--white-color);
      }
      .contact-container{
        width: 90%;
      }
    }

    @media only screen and (max-width : 600px){
      .contact-header h2 {
        font-size: 2rem;
      }
      .contact-header p {
        font-size: 1.3rem;
        color: var(--white-color);
      }
      .contact-container{
        width: 95%;
      }
    }