body {
    font-family: Helvetica;
    background-color: #354D36; /* Background warna hijau */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100vh;
    margin: 0;
  }
  
  .contact-container {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  
  .contact-card {
    background-color: #F4E084; /* Background warna kuning */
    border-radius: 8px;
    padding: 40px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease-in-out;
  }
  
  .contact-card:hover {
    transform: scale(1.05);
  }
  
  .company-logo {
    width: 80px; /* Sesuaikan ukuran logo sesuai kebutuhan */
    height: auto;
    margin-bottom: 10px;
  }
  
  .contact-card h2 {
    color: #333;
  }
  
  .contact-card p {
    color: #666;
    margin: 8px 0;
  }
  