        @import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

        :root {
            --ansor-green: #198754;
            --ansor-dark: #0d5132;
            --accent-gold: #ffc107;
            --slate-600: #475569;
            --slate-800: #1e293b;
            --bg-soft: #f8fafc;
        }

        body {
            font-family: 'Plus Jakarta Sans', sans-serif;
            background-color: var(--bg-soft);
            color: var(--slate-800);
            line-height: 1.6;
        }

        /* --- HEADER REFINED --- */
        .detail-header {
            background: linear-gradient(135deg, var(--ansor-dark) 0%, var(--ansor-green) 100%);
            padding: 80px 0 100px;
            color: white;
            text-align: center;
        }

        .logo-circle {
            width: 140px;
            height: 140px;
            background: white;
            border-radius: 50%;
            padding: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: 0 15px 35px rgba(0,0,0,0.2);
            margin: 0 auto 25px;
            border: 4px solid rgba(255,255,255,0.1);
        }

        .logo-circle img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }

        .header-title {
            font-weight: 800;
            font-size: 2.2rem;
            margin-bottom: 5px;
            letter-spacing: -0.5px;
        }

        .header-subtitle {
            font-weight: 500;
            color: rgba(255,255,255,0.7);
            font-size: 1.1rem;
            text-transform: uppercase;
            letter-spacing: 2px;
        }

        /* --- NAVIGATION BUTTON --- */
        .nav-back-container {
            margin-top: -30px; /* Mengangkat tombol agar sedikit overlap dengan header */
            margin-bottom: 20px;
        }

        .btn-back {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: white;
            color: var(--slate-800);
            text-decoration: none;
            padding: 10px 20px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 0.9rem;
            box-shadow: 0 4px 15px rgba(0,0,0,0.08);
            transition: all 0.3s ease;
            border: 1px solid rgba(0,0,0,0.05);
        }

        .btn-back:hover {
            color: var(--ansor-green);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0,0,0,0.12);
        }

        /* --- CONTENT CARDS --- */
        .main-wrapper {
            position: relative;
            z-index: 10;
        }

        .card-custom {
            background: white;
            border: none;
            border-radius: 24px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.04);
            height: 100%;
        }

        .section-tag {
            display: inline-block;
            background: #f0fdf4;
            color: var(--ansor-green);
            padding: 6px 16px;
            border-radius: 50px;
            font-weight: 700;
            font-size: 0.75rem;
            text-transform: uppercase;
            margin-bottom: 15px;
            border: 1px solid #dcfce7;
        }

        .profile-title {
            font-weight: 700;
            font-size: 1.5rem;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .profile-title::after {
            content: "";
            flex: 1;
            height: 1px;
            background: #e2e8f0;
        }

        .description-text {
            color: var(--slate-600);
            font-size: 1.05rem;
            line-height: 1.8;
            white-space: pre-wrap;
        }

        /* --- SIDEBAR REFINED --- */
        .sidebar-heading {
            font-weight: 700;
            font-size: 1.1rem;
            margin-bottom: 20px;
            color: var(--slate-800);
        }

        .info-item {
            display: flex;
            gap: 15px;
            margin-bottom: 20px;
            padding: 15px;
            background: #f8fafc;
            border-radius: 16px;
            align-items: center;
        }

        .info-icon {
            width: 45px;
            height: 45px;
            background: white;
            color: var(--ansor-green);
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 12px;
            font-size: 1.2rem;
            box-shadow: 0 4px 10px rgba(0,0,0,0.03);
        }

        .info-label {
            display: block;
            font-size: 0.75rem;
            color: #94a3b8;
            text-transform: uppercase;
            font-weight: 700;
            margin-bottom: 2px;
        }

        .info-value {
            display: block;
            font-weight: 700;
            color: var(--slate-800);
            font-size: 0.95rem;
        }

        .btn-wa {
            background: #25d366;
            color: white;
            border: none;
            border-radius: 16px;
            padding: 14px;
            font-weight: 700;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            transition: 0.3s;
            box-shadow: 0 10px 20px rgba(37, 211, 102, 0.2);
            text-decoration: none;
        }

        .btn-wa:hover {
            background: #1eb956;
            color: white;
            transform: scale(1.02);
        }

        @media (max-width: 768px) {
            .header-title { font-size: 1.6rem; }
            .nav-back-container { margin-top: -20px; text-align: center; }
        }