body {
    font-family: 'Kanit', sans-serif;
    margin: 0;
    padding: 0;
    
      background-image: url('/img/BG-UsedCar.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
  }

  .contact-container {
    max-width: 1200px;
    margin: 80px auto;
    padding: 20px;
    display: flex;
    gap: 30px;
  }

  .contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    flex: 1;
  }

  .contact-card h2 {
    margin-top: 0;
    color: #007bff;
  }

  .contact-card p {
    margin-bottom: 12px; /* ระยะห่างระหว่างแต่ละบรรทัด */
    line-height: 1.6;
    font-size: 16px;
  }
  
  .contact-card i {
    font-size: 20px;     /* ขนาดใหญ่ขึ้น */
    color: #007bff;      /* สีฟ้า (Bootstrap Blue) */
    margin-right: 8px;   /* ระยะห่างจากข้อความ */
  }
  
  .map-card {
    flex: 1;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  }

  .map-card iframe {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 400px;
  }
  .line-button {
    display: inline-block;
    background-color: #00c300;
    color: #fff;
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 20px;
    transition: background-color 0.3s;
  }
  .line-button:hover {
    background-color: #00a800;
  }
  .line-button i {
    font-size: 24px;
    color: #ffffff;
  }
  
  .social-button {
  display: inline-block;
  padding: 10px 15px;
  border-radius: 8px;
  color: white;
  text-decoration: none;
  font-weight: bold;
  margin-right: 10px;
  transition: background-color 0.3s;
}

.social-button.facebook {
  background-color: #1877f2;
}

.social-button.tiktok {
  background-color: #000000;
}

.social-button:hover {
  opacity: 0.8;
}

  @media (max-width: 768px) {
    .contact-container {
      flex-direction: column;
    }
  }