body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f9f9f9;
    color: #333;
  }

  .tentang-acara {
    background-color: #ffffff;
    padding: 60px 20px;
  }

  .container {
    max-width: 1000px;
    margin: 0 auto;
  }

  .tentang-acara h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #004EFF;
  }

  .deskripsi {
    font-size: 1.1rem;
    line-height: 1.7;
    text-align: center;
    margin-bottom: 40px;
    color: #555;
  }

  .detail-acara {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
  }

  .card {
    background-color: #f0f4ff;
    border-left: 5px solid #004EFF;
    border-radius: 8px;
    padding: 20px;
    flex: 1 1 280px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
  }

  .card h3 {
    font-size: 1.3rem;
    color: #004EFF;
    margin-bottom: 10px;
  }

  .card p {
    font-size: 1rem;
    color: #333;
  }

  /* Responsive */
  @media (max-width: 768px) {
    .tentang-acara h2 {
      font-size: 2rem;
    }

    .deskripsi {
      font-size: 1rem;
    }
  }