.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    padding: 20px;
    text-align: center;
  }
  
  /* Form styling */
  form {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: 100%;
    max-width: 500px;
  }
  
  /* Style untuk setiap grup input */
  .form-group {
    margin-bottom: 20px;
    text-align: left;
  }
  
  /* Style label untuk input */
  .form-group label {
    font-size: 1.1rem;
    color: #555;
    display: block;
    margin-bottom: 8px;
  }
  
  /* Input fields styling */
  .form-group input,
  .form-group textarea {
    width: 100%;
    padding: 12px;
    font-size: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
  }
  
  /* Gaya saat input fokus */
  .form-group input:focus,
  .form-group textarea:focus {
    border-color: #1b7ccc;
    outline: none;
  }
  
  /* Styling untuk textarea */
  .form-group textarea {
    height: 150px;
    resize: vertical;
  }
  
  /* Tombol kirim */
  button {
    background-color: #1170af;
    color: white;
    font-size: 1.1rem;
    border: none;
    padding: 15px 25px;
    border-radius: 5px;
    cursor: pointer;
    width: 100%;
    transition: background-color 0.3s ease;
  }
  
  /* Gaya tombol saat hover */
  button:hover {
    background-color: #176fc2;
  }
  
  /* Responsif - Mengatur agar form lebih kecil di layar kecil */
  @media (max-width: 768px) {
    .contact-section {
      padding: 10px;
    }
  
    form {
      padding: 20px;
    }
  }