/* Warna tema */
:root {
    --green-dark: #064e3b;
    --yellow-dark: #f59e0b;
    --cream: #fefce8;
    --font-main: 'Segoe UI', sans-serif;
  }
  
  body {
    margin: 0;
    font-family: var(--font-main);
    background-color: var(--cream);
    color: #111;
  }
  
  header.hero {
    display: flex;
    flex-wrap: wrap;
    background-color: var(--green-dark);
    color: white;
    padding: 2rem;
    align-items: center;
    justify-content: space-between;
  }
  
  .hero-text {
    flex: 1;
  }
  
  .hero-text h1 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
  }
  
  .hero-text p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
  }
  
  .hero-text .btn {
    background-color: var(--yellow-dark);
    padding: 0.5rem 1rem;
    color: white;
    text-decoration: none;
    border-radius: 8px;
  }
  
  .hero-img img {
    width: 150px;
    border-radius: 10px;
    
  }
  
  .section {
    padding: 2rem;
    text-align: center;
  }

  .section p {
    text-align: justify;
  }
  
  .cards {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    gap: 1rem;
  }
  
  .card {
    background-color: var(--cream);
    padding: 1rem;
    width: 220px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 250px;
    text-align: center;
  }
  
  .gallery {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 1rem 0;
  }
  
  .gallery img {
    width: 180px;
    border-radius: 10px;
  }
  
  .btn {
    display: inline-block;
    background-color: var(--yellow-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    text-decoration: none;
    margin-top: 1rem;
  }
  
  .footer {
    text-align: center;
    padding: 1rem;
    background-color: var(--green-dark);
    color: white;
  }

  .icon {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
  }

  .card p {
    text-align: center;
  }

  .struktur {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }
  
  .level {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap; /* Agar responsive di layar kecil */
  }
  
  .person {
    text-align: center;
    max-width: 220px;
  }
  
  .person img {
    width: 200px;
    height: auto;
  }
  

 

 


  
    