/* Bagian Peta */
.map-section iframe {
    width: 100%;
    height: 450px;
    border: 0;
  }
  
  /* Bagian Kontak */
  .contact-section {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    background-color: white;
    color: black;
    flex-wrap: wrap; /* Membuat elemen fleksibel dan bisa dibungkus */
    gap: 20px; /* Memberikan jarak antar elemen */
  }
  
  /* Info Kontak */
  .contact-info {
    width: 45%;
    box-sizing: border-box; /* Memastikan padding dan margin tidak mempengaruhi ukuran */
  }
  
  .contact-info h2 {
    font-size: 24px;
    margin-bottom: 10px;
  }
  
  .contact-info p {
    font-size: 16px;
    margin: 5px 0;
  }
  
  .social-links {
    list-style: none;
    padding: 0;
  }
  
  .social-links li {
    margin: 5px 0;
  }
  
  .social-links a {
    text-decoration: none;
    color: #004d00;
    font-size: 16px;
  }
  
  /* Formulir Umpan Balik */
  .feedback-form {
    width: 45%;
    box-sizing: border-box;
  }
  
  .feedback-form h2 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .feedback-form form {
    display: flex;
    flex-direction: column;
  }
  
  .feedback-form input,
  .feedback-form select,
  .feedback-form textarea,
  .feedback-form button {
    margin: 10px 0;
    padding: 10px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 5px;
  }
  
  .feedback-form button {
    background-color: #004d00;
    color: white;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  
  .feedback-form button:hover {
    background-color: #006600;
  }
  
  /* Responsivitas untuk layar lebih kecil dari 768px */
  @media (max-width: 768px) {
    .contact-info,
    .feedback-form {
      width: 100%; /* Membuat elemen lebar penuh pada layar kecil */
      margin-bottom: 20px;
    }
  
    .contact-section {
      flex-wrap: wrap; /* Membungkus elemen-elemen pada layar kecil */
      justify-content: center; /* Memusatkan elemen ketika dibungkus */
    }
  
    .map-section iframe {
      height: 300px; /* Menyesuaikan tinggi peta pada layar kecil */
    }
  }
  
  /* Responsivitas untuk layar lebih kecil dari 480px */
  @media (max-width: 480px) {
    .feedback-form input,
    .feedback-form select,
    .feedback-form textarea,
    .feedback-form button {
      font-size: 14px; /* Menyesuaikan ukuran font untuk layar kecil */
    }
  
    .social-links a {
      font-size: 14px; /* Menyesuaikan ukuran font sosial media pada layar kecil */
    }
  }
  