.judul-menu {
    font-size: 28px;
    font-weight: bold;
    color: #2c3e50;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 10px 0;
    border-bottom: 3px solid #28a745;
    display: inline-block;
    margin-bottom: 30px;
  }

  .team-member {
    background: #ffffff;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.05);
    margin-bottom: 30px;
  }

  .member-img {
    padding: 15px;
  }

  .member-img img {
    width: 100%;
    height: auto;
    border-radius: 8px;
  }

  .member-info {
    padding: 15px 10px;
  }

  .member-info h4 {
    font-size: 18px;
    font-weight: 700;
    color: #007bff;
    margin: 10px 0 5px;
  }

  .member-info span {
    display: block;
    font-size: 14px;
    color: #333;
    line-height: 1.4;
  }

  .section {
    padding: 60px 0;
  }
  .detail-container {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
        gap: 20px;
        background: white;
        padding: 40px;
        border-radius: 10px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        flex-direction: row; /* Default: gambar di kiri, teks di kanan */
    }
    .detail-image {
        flex: 1;
        text-align: center;
    }
    .detail-image img {
        width: 100%;
        max-width: 250px;
        border-radius: 10px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    }
    .detail-text {
        flex: 2;
        text-align: left;
    }
    .detail-text h2 {
        font-size: 24px;
        font-weight: bold;
        color: #2c3e50;
        border-bottom: 3px solid #28a745;
        display: inline-block;
        padding-bottom: 5px;
    }
    .detail-list {
        display: grid;
        grid-template-columns: auto 1fr; /* Label & Nilai */
        gap: 8px 15px; /* Spasi antar elemen */
        font-size: 18px;
        color: #555;
    }
    .detail-label {
        font-weight: bold;
        min-width: 150px; /* Lebar tetap agar titik dua sejajar */
        text-align: left; /* Rata kiri */
    }
    .detail-value {
        text-align: left; /* Rata kiri */
    }
    .btn-back {
        display: inline-block;
        margin-top: 15px;
        padding: 10px 20px;
        background: #6c757d;
        color: white;
        border-radius: 5px;
        text-decoration: none;
        transition: 0.3s;
    }
    .btn-back:hover {
        background: #5a6268;
    }
    /* RESPONSIVE: Foto pindah ke atas jika layar kecil */
    @media (max-width: 768px) {
        .detail-container {
            flex-direction: column; /* Gambar di atas, teks di bawah */
            text-align: center;
        }
        .detail-text {
            text-align: center;
        }
        .detail-list {
            display: flex;
            flex-direction: column;
            align-items: center;
        }
        .detail-label {
            width: auto;
            min-width: unset; /* Hilangkan batasan lebar untuk fleksibilitas */
        }
    }