body {
    font-family: 'Inter', sans-serif;
    background-color: #f8fafc;
    color: #334155;
}

.page-banner {
    padding: 80px 0;
    background: var(--theme-gradient);
}

.hak-kewajiban-container {
    padding: 60px 0 100px;
}

/* Premium Navigation Tabs */
.tab-wrapper {
    display: flex;
    justify-content: center;
    margin-bottom: 40px;
}

.tab-nav {
    display: flex;
    background-color: #f1f5f9;
    padding: 6px;
    border-radius: 50px;
    border: 1px solid #e2e8f0;
    max-width: 500px;
    width: 100%;
}

.tab-nav-btn {
    flex: 1;
    border: none;
    background: none;
    font-size: 16px;
    font-weight: 700;
    padding: 12px 24px;
    border-radius: 50px;
    color: #64748b;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.tab-nav-btn:hover {
    color: var(--theme-primary);
}

.tab-nav-btn.active {
    background-color: #ffffff;
    color: var(--theme-primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* Tab Panels */
.tab-panel {
    display: none;
    animation: fadeInUp 0.5s ease;
}

.tab-panel.active {
    display: block;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(15px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Cards Grid Layout */
.hk-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.hk-card {
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
    padding: 24px;
    display: flex;
    gap: 18px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hk-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--theme-shadow-hover);
    border-color: rgba(11, 92, 59, 0.2);
}

.hk-card-num {
    font-size: 24px;
    font-weight: 800;
    color: rgba(108, 197, 155, 0.2);
    font-family: 'Raleway', sans-serif;
    line-height: 1;
}

.hk-card-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background-color: rgba(108, 197, 155, 0.12);
    color: var(--theme-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.hk-card-content {
    flex-grow: 1;
}

.hk-card-title {
    font-size: 16px;
    font-weight: 800;
    color: #1e293b;
    margin-bottom: 8px;
    font-family: 'Raleway', sans-serif;
    line-height: 1.4;
}

.hk-card-desc {
    font-size: 14px;
    line-height: 1.5;
    color: #64748b;
    margin: 0;
}

/* Legal Footer */
.hk-legal-notice {
    background-color: var(--theme-mint-ultra-light);
    border: 1px solid rgba(11, 92, 59, 0.1);
    border-radius: 16px;
    padding: 25px;
    margin-top: 50px;
    text-align: center;
    font-size: 13.5px;
    color: #475569;
    line-height: 1.6;
}
