.contact-container {
    max-width: 600px;
    margin: 20px auto;
    margin-top: 2%;
    padding: 20px;
}

.contact-container h2 {
    font-size: 28px;
    text-align: center;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 15px;
    display: flex;
    align-items: center;
    transition: transform 0.3s ease;
    background-color: #fff;
}

.contact-item:hover {
    transform: translateY(-2px);
}

.contact-item img {
    width: 30px;
    height: 30px;
    margin-right: 15px;
    border-radius: 50%;
    background-color: #ddd;
    padding: 5px;
}

.contact-item span {
    font-size: 16px;
    color: #333;
}

.contact-item a {
    text-decoration: none;
    color: inherit;
}

.contact-item a:hover {
    color: #007bff;
}

@media (max-width: 480px) {
  .header {
    height: 5vh;
  }

  .navbar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d5cdf3;
    z-index: 1000;
    margin-top: 6vh;
  }

  nav {
    height: 5vh;
  }

  .navbar.active {
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #d5cdf3;
    z-index: 1000;
    margin-top: 6vh;
    overflow-y: auto; 
    display: flex; 
    flex-direction: column; 
    justify-content: center; 
    align-items: center; 
  }

  .menu-toggle {
    display: flex;
  }

  .navbar li {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 15%;
    justify-content: center; 
    margin-left: -10%;
  }

    .contact-container {
        margin-top: 5%;
    }
  }
  
  @media (min-width: 481px) and (max-width: 768px) {
    .header {
      height: 8vh;
    }
  
    .navbar {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #d5cdf3;
      z-index: 1000;
      margin-top: 6vh;
    }
  
    nav {
      height: 8vh;
    }
  
    .navbar.active {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: #d5cdf3;
      z-index: 1000;
      margin-top: 8vh;
      overflow-y: auto; 
      display: flex; 
      flex-direction: column; 
      justify-content: center; 
      align-items: center; 
    }
  
    .menu-toggle {
      display: flex;
    }
  
    .navbar li {
      display: flex;
      flex-direction: column;
      align-items: center;
      height: 15%;
      justify-content: center; 
      margin-left: -10%;
    }

    .contact-container{
        margin-top: 5%;
    }
  }
  
  @media (min-width: 769px) and (max-width: 992px) {
    .header {
      align-items: center;
      text-align: center;
    }

    .contact-container{
        margin-top: 30%;
    }
  }