/* Contact card mobile improvements */
@media (max-width: 767px) {
  /* Make contact section items better aligned */
  .contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    padding: 5px 0;
  }

  .contact-icon-wrapper {
    margin-top: 0;
    width: 36px;
    height: 36px;
  }
  
  .contact-text {
    padding-top: 8px;
    font-size: 14px;
    line-height: 1.4;
  }
  
  /* Address on two lines should align with the icon */
  .contact-text {
    word-break: normal;
    word-wrap: break-word;
  }
  
  /* Improve contact card for mobile */
  .contact-card {
    margin: 0 0 30px 0;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  }
  
  /* Better button alignment for "Find Us On Map" */
  .map-card-header {
    padding: 15px;
    justify-content: center;
  }
  
  .map-pin-icon {
    margin-right: 0;
  }
  
  /* Fix map size on mobile */
  .google-map-area {
    height: auto;
  }
  
  .google-map-area iframe {
    min-height: 300px;
  }
  
  /* Social icons spacing */
  .social-media-icons {
    margin: 20px auto 10px;
    justify-content: center;
    gap: 12px;
  }
  
  /* Make the contact title smaller */
  .contact-heading {
    font-size: 22px;
    margin-bottom: 10px;
  }
  
  .contact-heading-divider {
    width: 60px;
    margin-bottom: 30px;
  }
  
  /* Contact card padding adjustment */
  .contact-us-info2 {
    padding: 0;
  }
}
