
/*Contact Form */
.contact-section {
  background-image:
    linear-gradient(to bottom, #0047abd9, #002b7cae),
    url('images/network.png');
    height: 90vh;
    background-size: cover;
    display: flex;
    justify-content: space-evenly;
    align-items: flex-start;
    padding: 40px;
    max-width: screen-size;
  }

  /* Responsive Scaling */
@media (max-width: 768px) {
  .contact-section {
      height: auto;
      display: flex;
      flex-direction: column; /* Stack items vertically */
      text-align: center;
      align-items: center;
  }
}

.checkbox-group {
  display: flex;
  flex-direction: row;
  border: none;
  padding: 10px 0;
  margin-bottom: 15px;
}

.checkbox-group legend {
  font-size: 16px;
  color: white;
  margin-bottom: 5px;
}

.checkbox-group label {
  display: block;
  font-size: 14px;
  text-align: center;
  color: white;
  margin-bottom: 5px;
}

.checkbox-group input {
  margin-right: 5px;
}

  
  .contact-form,
  .contact-info {
    flex: 1;
  }
  
  .contact-form {
    max-width: 600px;
    padding-right: 5%;
  }
  
  .contact-form h2 {
    font-size: 24px;
    color: white;
    margin-bottom: 20px;
  }
  
  .contact-form label {
    display: block;
    font-size: 16px;
    color: white;
    margin-bottom: 5px;
  }
  
  .contact-form input,
  .contact-form textarea {
    width: 100%;
    padding: 10px;
    font-size: 14px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
  }
  
  .contact-form button {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 20px;
    font-size: 16px;
    border-radius: 4px;
    cursor: pointer;
  }
  
  .contact-form button:hover {
    background-color: #0056b3;
  }
  
  .contact-info h2 {
    font-size: 24px;
    color: white;
    margin-bottom: 10px;
  }
  
  .contact-info p {
    font-size: 16px;
    color: white !important;
    margin-bottom: 20px;
  }

  .contact-info a{
    color: white !important;
    -webkit-tap-highlight-color: transparent !important;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0) !important;
  }
  
  .contact-info iframe {
    border: none;
    border-radius: 4px;
  }

  .contact-info{
    max-width: 500px;
    aspect-ratio: 1 / 1;
  }
