.struktur-section {
    padding: 80px 20px;
}

.struktur-title {
    text-align: center;
    font-size: 42px;
    font-weight: 700;
    color: #0f6b1d;
    margin-bottom: 40px;
}

.struktur-section {
    padding: 60px 20px;
    background: #f8f8f8;
    text-align: center;
}

.struktur-title {
    font-size: 36px;
    font-weight: bold;
    color: #1b5e20;
    margin-bottom: 40px;
}

/* Wrapper */
.card-wrapper {
    display: flex;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

/* Card */
.struktur-cards {
    background: #e8f5e9;
    border-radius: 20px;
    padding: 20px;
    width: 200px;
    text-align: center;
    border: 2px solid #a5d6a7;
    box-shadow: 0 8px 20px rgba(0, 128, 0, 0.2);
    transition: all 0.3s ease;
}

/* Hover effect biar hidup */
.struktur-cards:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 12px 25px rgba(0, 128, 0, 0.3);
}

/* Foto */
.struktur-cards img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 15px;
    border: 3px solid #c8e6c9;
}

/* Nama */
.struktur-cards h3 {
    margin: 10px 0;
    font-size: 20px;
    font-weight: bold;
}

/* Jabatan */
.struktur-cards p {
    font-size: 18px;
    color: #2e7d32;
    font-weight: 500;
}