 @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

        :root {
            --primary-green: #198754;
            --dark-green: #0d5132;
            --accent-gold: #ffc107;
            --soft-bg: #f8fafc;
            --slate-600: #475569;
            --slate-800: #1e293b;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--slate-800);
            background-color: #fff;
            line-height: 1.7;
        }

        /* --- HERO SECTION --- */
        .hero-section {
            min-height: 70vh;
            padding: 120px 0;
            display: flex;
            align-items: center;
            justify-content: center;

            text-align: center;

            position: relative;
            overflow: hidden;

            background:
                linear-gradient(
                    rgba(0,0,0,0.75),
                    rgba(13,81,50,0.65)
                ),;

            background-size: cover;
            background-position: center center;
            background-repeat: no-repeat;
            background-attachment: fixed;

            color: #fff;
        }

        .hero-section .container{
            position: relative;
            z-index: 2;
        }

        .hero-title {
            font-weight: 900;
            font-size: clamp(2.5rem, 5vw, 4rem);
            line-height: 1.15;
            margin-bottom: 20px;
            color: #fff;
        }

        .hero-section p{
            max-width: 800px;
            margin: 0 auto;
            color: rgba(255,255,255,.9) !important;
        }

        .text-highlight{
            color: var(--accent-gold);
        }

        @media (max-width:768px){

            .hero-section{
                min-height: 50vh;
                padding: 90px 0;
                background-attachment: scroll;
            }

        }

        /* --- SECTION TYPOGRAPHY --- */
        .section-title {
            font-weight: 800;
            font-size: 2rem;
            color: var(--slate-800);
            position: relative;
            display: inline-block;
            margin-bottom: 1.5rem;
        }

        .section-title::after {
            content: "";
            position: absolute;
            bottom: -10px;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: var(--accent-gold);
            border-radius: 10px;
        }

        .py-section { padding: 90px 0; }

        /* --- TENTANG CONTENT --- */
        .about-text {
            font-size: 1.05rem;
            color: var(--slate-600);
            text-align: justify;
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.03);
        }

        /* --- CORE VALUES --- */
        .nilai-card {
            background: white;
            border-radius: 24px;
            padding: 45px 30px;
            text-align: center;
            height: 100%;
            transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
            border: 1px solid rgba(0,0,0,0.05);
            position: relative;
            overflow: hidden;
        }

        .nilai-card:hover {
            transform: translateY(-12px);
            box-shadow: 0 20px 50px rgba(0,0,0,0.07);
        }

        .icon-circle {
            width: 85px; height: 85px;
            background: #f0fdf4;
            color: var(--primary-green);
            display: flex; align-items: center; justify-content: center;
            border-radius: 50%; margin: 0 auto 30px;
            font-size: 2.2rem; transition: 0.5s;
        }

        .nilai-card:hover .icon-circle { background: var(--primary-green); color: white; transform: rotateY(360deg); }

        /* --- MODERN PENGURUS STYLE (MANUAL) --- */
        .pengurus-card {
            background: #ffffff;
            border-radius: 30px;
            padding: 40px 20px;
            transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            border: 1px solid rgba(0,0,0,0.05);
            height: 100%;
        }

        .pengurus-card:hover {
            transform: translateY(-15px);
            box-shadow: 0 25px 50px rgba(0,0,0,0.1);
            border-color: var(--primary-green);
        }

        .avatar-container {
            position: relative;
            width: 140px; height: 140px;
            margin: 0 auto 25px;
        }

        .avatar-container::after {
            content: '';
            position: absolute; inset: -8px;
            border: 2px dashed #e2e8f0;
            border-radius: 50%; transition: 0.5s;
        }

        .pengurus-card:hover .avatar-container::after {
            border-color: var(--primary-green);
            transform: rotate(90deg);
        }

        .avatar-img {
            width: 100%; height: 100%;
            object-fit: cover; border-radius: 50%;
            position: relative; z-index: 2;
            border: 4px solid #fff;
            box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        }

        .role-badge {
            background: #f0fdf4;
            color: var(--primary-green);
            padding: 6px 18px;
            border-radius: 50px;
            font-size: 0.75rem;
            font-weight: 800;
            display: inline-block;
            margin-bottom: 12px;
            text-transform: uppercase;
        }

        @media (max-width: 768px) {
            .about-text { padding: 25px; }
            .py-section { padding: 60px 0; }
        }