/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  
  .location-campus {
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    text-align: center;
  }
  
  .location-campus h2 {
    font-size: 2rem;
    color: #dc2011;
    margin-bottom: 15px;
  }
  
  .description {
    font-size: 1rem;
    color: #333;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  
  .contact-info {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 20px;
  }
  
  .info-box {
    background-color: #ffffff;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 30%;
    text-align: left;
    display: flex;
    align-items: center;
  }
  
  .icon {
    font-size: 1.5rem;
    margin-right: 15px;
    color: #28669c;
  }
  
  .info-box p {
    font-size: 0.95rem;
    color: #333;
    margin: 0;
    line-height: 1.4;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-info {
      flex-direction: column;
      align-items: center;
    }
    
    .info-box {
      flex: 1 1 100%;
      text-align: center;
    }
    
    .icon {
      display: block;
      margin: 0 auto 10px;
    }
  }
  

  /*form and map*/
  .contact-section {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
  }
  
  .contact-form, .contact-map {
    flex: 1 1 48%;
    background-color: #e3e7ed;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  }
  
  .contact-form label {
    font-size: 0.9rem;
    color: #333;
    margin-bottom: 5px;
    display: block;
  }
  
  .contact-form input, .contact-form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: none;
    border-radius: 5px;
    background-color: #d1d8e0;
    color: #333;
    font-size: 1rem;
  }
  
  .contact-form textarea {
    resize: vertical;
    height: 100px;
  }
  
  .contact-form button {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    color: #fff;
    background-color: #dc2011;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
  }
  
  .contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    border-radius: 8px;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .contact-section {
      flex-direction: column;
    }
  
    .contact-form, .contact-map {
      flex: 1 1 100%;
    }
  }
  