/* Contact Section Styling */
.contact-us {
    padding: 30px 0; /* Adjust padding as needed */
    background-color: #ffffff; /* Set background color */
    text-align: center;
  }
  
  .row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }
  
  .contact-card {
    width: 400px; /* Set the width of each contact card */
    margin-bottom: 20px; /* Adjust margin as needed */
    background-color: #fff; /* Set card background color */
    padding: 30px; /* Set padding */
    text-align: center;
    border: 1px solid #ffffff; /* Set border */
  }
  
  /* Adjust styles for individual card elements as needed */
  .contact-card i {
    font-size: 36px;
    color: #333;
  }
  
  .contact-card h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: #333;
  }
  
  .contact-card p {
    font-size: 16px;
    margin-bottom: 10px;
    color: #666;
  }
  
  .contact-card h4 {
    font-size: 18px;
    margin-bottom: 0;
    color: #333;
  }

  .contact-us iframe {
    width: 100%;
    height: 450px; /* Set the desired height */
    border: 0;
  }
  