/* ====== Warna Utama & Font ====== */
:root {
    --primary-color: #2ecc71; /* Hijau utama */
    --secondary-color: #27ae60; /* Hijau tua */
    --text-dark: #1e2a2f; /* Abu gelap modern */
    --text-light: #5f6a6d; /* Abu netral */
    --bg-light: #f4f6f8;
}

body {
    background-color: var(--bg-light);
    font-family: 'Poppins', sans-serif;
    color: var(--text-dark);
    margin: 0;
    padding: 0;
}

/* ====== Container Halaman ====== */
.profile-section {
    background: white;
    padding: 40px;
    margin: 40px auto;
    max-width: 900px;
    border-radius: 15px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* ====== Heading ====== */
.profile-section h1 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

/* ====== Paragraf & List ====== */
.profile-section p {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-light);
    margin-bottom: 20px;
}

.profile-section ul {
    list-style: none;
    padding: 0;
}

.profile-section ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.profile-section ul li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--primary-color);
}

/* ====== Tombol ====== */
.btn-custom {
    background: var(--primary-color);
    color: white;
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-custom:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(39, 174, 96, 0.3);
}

/* ====== Box Visi ====== */
.visi-box {
    background: var(--primary-color);
    color: white;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    box-shadow: 0 4px 10px rgba(46, 204, 113, 0.2);
}

.visi-box h2 {
    font-size: 1.6rem;
    margin-bottom: 8px;
}

/* ====== Box Misi ====== */
.misi-box h2 {
    color: var(--primary-color);
    font-size: 1.6rem;
    margin-bottom: 12px;
}

.misi-box ul li {
    background: white;
    padding: 10px 18px;
    margin-bottom: 10px;
    border-radius: 10px;
    padding-left: 40px;
    box-shadow: 0 3px 8px rgba(0,0,0,0.05);
    color: var(--text-dark);
}

.misi-box ul li::before {
    content: "✔";
    position: absolute;
    left: 15px;
    color: var(--primary-color);
}

/* ====== Box Struktur ====== */
.struktur-box {
    background: white;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
    text-align: center;
    color: var(--text-dark);
}

.struktur-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

/* ====== Responsif ====== */
@media (max-width: 768px) {
    .profile-section {
        padding: 25px;
        margin: 20px;
    }

    .profile-section h1 {
        font-size: 1.8rem;
    }
}
.nav-buttons {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
}

.nav-buttons a {
    background: var(--primary-color);
    color: white;
    padding: 10px 25px;
    border-radius: 25px;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.nav-buttons a:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}
